1/* PR middle-end/64067 */
2
3struct S { int s; };
4int *const v[1] = { &((struct S) { .s = 42 }).s };
5
6int *
7foo (void)
8{
9  return v[0];
10}
11