brintos

brintos / llvm-project-archived public Read only

0
0
Text · 145 B · 88dd068 Raw
16 lines · c
1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null2 3 4 5static int foo(int);6 7static int foo(C)8char C;9{10  return C;11}12 13void test(void) {14  foo(7);15}16