llvm-project/clang/test/Preprocessor/macro_fn_varargs_named.c

8 lines
131 B
C
Raw Normal View History

2006-07-29 09:24:46 +08:00
// 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)