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