blob: 88dd068d3c556c142d683c9f706ca45ad8db2d09 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
static int foo(int);
static int foo(C)
char C;
{
return C;
}
void test(void) {
foo(7);
}