1*f4a2713aSLionel Sambuc // RUN: %clang -E -o %t -C %s 2*f4a2713aSLionel Sambuc // RUN: grep '^int x; // comment' %t 3*f4a2713aSLionel Sambuc // RUN: grep '^x x' %t 4*f4a2713aSLionel Sambuc // RUN: %clang -E -o %t -CC %s 5*f4a2713aSLionel Sambuc // RUN: grep '^int x; // comment' %t 6*f4a2713aSLionel Sambuc // RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc int x; // comment 9*f4a2713aSLionel Sambuc 10*f4a2713aSLionel Sambuc #define A(foo, bar) foo bar 11*f4a2713aSLionel Sambuc #define B x // comment 12*f4a2713aSLionel Sambuc 13*f4a2713aSLionel Sambuc A(B, B) 14*f4a2713aSLionel Sambuc 15