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