Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / debug / debug-7.c
blobd424e91f304ecd3c039990737a237218badaa59b
1 /* { dg-do compile } */
2 /* { dg-options "-dA" } */
3 /* PR debug/12934. */
5 static inline int foo ()
7 return 42;
10 void bar (int *);
12 void baz ()
14 int a[foo ()];
15 bar (a);