]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/2002-10-12-TooManyArguments.c
Vendor import of clang RELEASE_360/rc2 tag r227651 (effectively, 3.6.0 RC2):
[FreeBSD/FreeBSD.git] / test / CodeGen / 2002-10-12-TooManyArguments.c
1 // RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2
3
4 void foo() {}
5
6 void bar() {
7   foo(1, 2, 3);  /* Too many arguments passed */
8 }