new testcase

llvm-svn: 38768
This commit is contained in:
Chris Lattner 2006-07-29 01:24:46 +00:00
parent 331ad778b0
commit f30dcbe07e

View File

@ -0,0 +1,7 @@
// RUN: clang -E %s | grep '^a: x$' &&
// RUN: clang -E %s | grep '^b: x y, z,h$'
#define A(b, c...) b c
a: A(x)
b: A(x, y, z,h)