2009-12-16 06:01:24 +08:00
|
|
|
// RUN: %clang -E -o %t -C %s
|
2009-11-08 09:45:36 +08:00
|
|
|
// RUN: grep '^int x; // comment' %t
|
|
|
|
// RUN: grep '^x x' %t
|
2009-12-16 06:01:24 +08:00
|
|
|
// RUN: %clang -E -o %t -CC %s
|
2009-11-08 09:45:36 +08:00
|
|
|
// RUN: grep '^int x; // comment' %t
|
|
|
|
// RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t
|
2009-06-09 05:48:20 +08:00
|
|
|
|
|
|
|
int x; // comment
|
|
|
|
|
|
|
|
#define A(foo, bar) foo bar
|
|
|
|
#define B x // comment
|
|
|
|
|
|
|
|
A(B, B)
|
|
|
|
|