1 // RUN: %clang_cc1 %s -E | FileCheck --strict-whitespace --match-full-lines %s
3 // In the following tests, note that the output is sensitive to the
4 // whitespace *preceding* the varargs argument, as well as to
5 // interior whitespace. AFAIK, this is the only case where whitespace
6 // preceding an argument matters, and might be considered a bug in
7 // GCC. Nevertheless, since this feature is a GCC extension in the
8 // first place, we'll follow along.
10 #define debug(format, ...) format, ## __VA_ARGS__)