blob: f20d8cf7c8b24400e1c555dd7fb21bffba0687b1 [file] [log] [blame]
Chris Lattnera7fa1b22007-04-10 06:16:30 +00001/* RUN: clang -E t.cpp -x=c++ | grep block_1 &&
2 RUN: clang -E t.cpp -x=c++ | not grep block_2 &&
3 RUN: clang -E t.cpp -x=c | not grep block
4*/
5
6#if true
7block_1
8#endif
9
10#if false
11block_2
12#endif
13