new testcase

llvm-svn: 38790
This commit is contained in:
Chris Lattner 2006-07-29 07:08:39 +00:00
parent b631d7ce6c
commit 5b123fde96
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
// Example from C99 6.10.3.4p7
// RUN: clang -E %s | grep -F 'int j[] = { 123, 45, 67, 89,' &&
// RUN: clang -E %s | grep -F '10, 11, 12, };'
#define t(x,y,z) x ## y ## z
int j[] = { t(1,2,3), t(,4,5), t(6,,7), t(8,9,),
t(10,,), t(,11,), t(,,12), t(,,) };