1// RUN: %clang_cc1 %s -E | grep 'V);'
2// RUN: %clang_cc1 %s -E | grep 'W, 1, 2);'
3// RUN: %clang_cc1 %s -E | grep 'X, 1, 2);'
4// RUN: %clang_cc1 %s -E | grep 'Y,);'
5// RUN: %clang_cc1 %s -E | grep 'Z,);'
6
7#define debug(format, ...) format, ## __VA_ARGS__)
8debug(V);
9debug(W, 1, 2);
10debug(X, 1, 2 );
11debug(Y, );
12debug(Z,);
13
14