cpp-output.c 295 B

1234567891011121314
  1. // 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. int x; // comment
  8. #define A(foo, bar) foo bar
  9. #define B x // comment
  10. A(B, B)