blob: e44095b5990245f6c7483669416de6668ea8fdcf [file] [log] [blame]
Daniel Dunbar80737ad2009-12-15 22:01:24 +00001// RUN: %clang -E -o %t -C %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: grep '^int x; // comment' %t
3// RUN: grep '^x x' %t
Daniel Dunbar80737ad2009-12-15 22:01:24 +00004// RUN: %clang -E -o %t -CC %s
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: grep '^int x; // comment' %t
6// RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t
Daniel Dunbar3a183d32009-06-08 21:48:20 +00007
8int x; // comment
9
10#define A(foo, bar) foo bar
11#define B x // comment
12
13A(B, B)
14