blob: fa42ca581a0a43aa726f47afc30a3b4dcfb96698 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4
5static int foo(int);
6
7static int foo(C)
8char C;
9{
10 return C;
11}
12
13void test() {
14 foo(7);
15}