Whoa, GCC accepts this. Whack.

llvm-svn: 7986
This commit is contained in:
Chris Lattner 2003-08-20 18:25:04 +00:00
parent 986b244976
commit e62a6faef9
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
static int foo(int);
static int foo(C)
char C;
{
return C;
}
void test() {
foo(7);
}