1 2 3 4 5 6 7 8 9 10 11
// RUN: clang %s -emit-llvm int g(); int foo(int i) { return g(i); } int g(int i) { return g(i); }