blob: 2f332fb0c39b88c43b189b88d143495b62646dcd [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-g -O" } */
extern void foo (void);
static
void baz (int i)
{
foo ();
typedef char A[i];
struct { A b; } *x = 0;
}
void
bar (int i)
{
baz (i);
}