blob: 24ad996efdbb0ec3560543155b6c5c5df5acf7fc [file] [log] [blame]
/* PR middle-end/64067 */
struct S { int s; };
int *const v[1] = { &((struct S) { .s = 42 }).s };
int *
foo (void)
{
return v[0];
}