Clang Project

clang_source_code/test/Driver/preprocessor.c
1// RUN: %clang -E -x c-header %s > %t
2// RUN: grep 'B B' %t
3
4#define A B
5A A
6
7