rt_gccstream/gcc/testsuite/gcc.dg/20011015-1.c

18 lines
204 B
C

/* { dg-do compile } */
/* { dg-options "-O3 -std=gnu99" } */
char foo (char *x)
{
return *x;
}
void bar (char *x)
{
void *arr[foo (x)] __attribute__((unused));
}
void baz (char *x)
{
bar (x);
}