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
6a: A(x)
7b: A(x, y, z,h)
8
9#define B(b, c...) foo(b, ## c)
10c: B(x)
11