blob: e98849b15afc196da37c753547f2a05388dce20a [file] [log] [blame]
Daniel Dunbara45cf5b2009-03-24 02:24:46 +00001// 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, );'
Chris Lattner0c8a1ed2008-01-29 07:54:23 +00006
7#define debug(format, ...) format, ## __VA_ARGS__)
8debug(V);
9debug(W, 1, 2);
10debug(X, 1, 2 );
11debug(Y, );
12debug(Z,);
13