New testcase, for PR 115
[oota-llvm.git] / test / CFrontend / 2003-08-20-PrototypeMismatch.c
1
2
3 static int foo(int);
4
5 static int foo(C)
6 char C;
7 {
8   return C;
9 }
10
11 void test() {
12   foo(7);
13 }