blob: ee37f4cd6853cb15858faa0ae46ef310a55644f0 [file] [log] [blame]
Daniel Dunbar3a183d32009-06-08 21:48:20 +00001// RUN: clang -E -o %t -C %s &&
2// RUN: grep '^int x; // comment' %t &&
3// RUN: grep '^x x' %t &&
4// RUN: clang -E -o %t -CC %s &&
5// RUN: grep '^int x; // comment' %t &&
6// RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t &&
7// RUN: true
8
9int x; // comment
10
11#define A(foo, bar) foo bar
12#define B x // comment
13
14A(B, B)
15