1 /* { dg-do compile } */
2 
3 /* Copyright (C) 2000  Free Software Foundation  */
4 /* Contributed by Alexandre Oliva <aoliva@cygnus.com> */
5 
foo()6 static int foo () { return 0; }
7 
bar()8 void bar () {
9   int foo ();
10   int foo ();
11 }
12