brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · e44095b Raw
15 lines · c
1// RUN: %clang -E -o %t -C %s2// RUN: grep '^int x; // comment' %t3// RUN: grep '^x x' %t4// RUN: %clang -E -o %t -CC %s5// RUN: grep '^int x; // comment' %t6// RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t7 8int x; // comment9 10#define A(foo, bar) foo bar11#define B x // comment 12 13A(B, B)14 15