summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/cxx_true.cpp
blob: bca70c5949e630f7f9b0e8c3318f199a5d98f74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* RUN: clang-cc -E %s -x c++ | grep block_1
   RUN: clang-cc -E %s -x c++ | not grep block_2
   RUN: clang-cc -E %s -x c | not grep block
*/

#if true
block_1
#endif

#if false
block_2
#endif