blob: 2324c2aa46624681a0609be8c227261e7ebef813 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// 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}