opnsense-src/test/Preprocessor/cxx_true.cpp
2009-06-02 17:58:47 +00:00

13 lines
200 B
C++

/* 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