aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro_fn_varargs_named.c
blob: 75ee96105d8bdb644cb8b0e5d4734783c33fd406 (plain)
1
2
3
4
5
6
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)