blob: 5ebdaf8d2fecb88fcda8b0baa8c3374bfea16b2d [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001/* RUN: clang -E %s -x=c++ | grep block_1 &&
2 RUN: clang -E %s -x=c++ | not grep block_2 &&
3 RUN: clang -E %s -x=c | not grep block
4*/
5
6#if true
7block_1
8#endif
9
10#if false
11block_2
12#endif
13