1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null 2 3 foo()4 void foo() {} 5 bar()6 void bar() { 7 foo(1, 2, 3); /* Too many arguments passed */ 8 } 9