New testcase, for PR 115
[oota-llvm.git] / test / CFrontend / 2002-07-30-VarArgsCallFailure.c
1 int tcount;
2 void test(char *, const char*, int);
3 void foo() {
4         char Buf[10];
5         test(Buf, "n%%%d", tcount++);
6 }