17 lines · cpp
1// RUN: %clang_cc1 -DA=1 -DB=2 -E %s | grep 'int a = 927 == 927'2// RUN: %clang_cc1 -DA=1 -DB=1 -E %s | grep 'int a = 37 == 37'3// RUN: %clang_cc1 -E %s | grep 'int a = 927 == 927'4#if A bitand B5#define X 376#else7#define X 9278#endif9 10#if A & B11#define Y 3712#else13#define Y 92714#endif15 16int a = X == Y;17