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