1 /* Test whether tree inlining works with prototyped nested functions.  */
2 
3 extern void foo (char *x);
4 void bar (void);
bar(void)5 void bar (void)
6 {
7   auto void baz (void);
8   void baz (void)
9     {
10       char tmp[2];
11       foo (tmp);
12     }
13   baz ();
14 }
15