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