blob: 7a01304c59c0eb0b25509388e43c8353651608a6 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
int tcount;
void test(char *, const char*, int);
void foo(void) {
char Buf[10];
test(Buf, "n%%%d", tcount++);
}