blob: 42b646fed3942f8af722308017f001f981d1d5b8 [file] [log] [blame]
/* PR middle-end/58344 */
/* { dg-do compile } */
struct U {};
static struct U a[1];
extern void bar (struct U);
void
foo (void)
{
bar (a[0]);
}