xref: /aosp_15_r20/external/clang/test/Preprocessor/macro_fn_varargs_named.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
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