xref: /minix3/external/bsd/llvm/dist/clang/test/Preprocessor/macro_fn_varargs_named.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -E %s | grep '^a: x$'
2 // RUN: %clang_cc1 -E %s | grep '^b: x y, z,h$'
3 // RUN: %clang_cc1 -E %s | grep '^c: foo(x)$'
4 
5 #define A(b, c...) b c
6 a: A(x)
7 b: A(x, y, z,h)
8 
9 #define B(b, c...) foo(b, ## c)
10 c: B(x)
11