1/* { dg-do compile } */
2/* { dg-options "-O3" } */
3
4void baz (void);
5int func ();
6
7static void
8bar (int a, int foo (void))
9{
10  baz ();
11  foo ();
12}
13
14void
15baz (void)
16{
17  bar (0, func);
18}
19