2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20011023-1.c
blobeca1adf17ca59318906e69440873962f7a202ce2
1 /* Test whether tree inlining works with prototyped nested functions. */
3 extern void foo (char *x);
4 void bar (void);
5 void bar (void)
7 auto void baz (void);
8 void baz (void)
10 char tmp[2];
11 foo (tmp);
13 baz ();