1 /* Mismatching decl of foo.  */
2 
3 int foo ();
4 
bar(void)5 int bar (void)
6 {
7   return foo() + 1;
8 }
9 
foo(int x,int y)10 int foo (int x, int y)
11 {
12   return x * y;
13 }
14