Sign in
llvm
/
clang
/
93de7bb38c1c57f8b8bafcb697bb5030793a9d6c
/
.
/
test
/
CodeGen
/
2002-10-12-TooManyArguments.c
blob: 2324c2aa46624681a0609be8c227261e7ebef813 [
file
]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
void
foo
()
{}
void
bar
()
{
foo
(
1
,
2
,
3
);
/* Too many arguments passed */
}