summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2002-10-12-TooManyArguments.c
blob: 2324c2aa46624681a0609be8c227261e7ebef813 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null


void foo() {}

void bar() {
  foo(1, 2, 3);  /* Too many arguments passed */
}