2007-12-02 06:27:33 +00:00

12 lines
104 B
C

// RUN: clang %s -emit-llvm
int g();
int foo(int i) {
return g(i);
}
int g(int i) {
return g(i);
}