Files
llvm-project/clang/test/Preprocessor/cxx_true.cpp
Chris Lattner 9e2fcccc33 Fix run line
llvm-svn: 39401
2007-04-10 07:06:36 +00:00

14 lines
191 B
C++

/* RUN: clang -E %s -x=c++ | grep block_1 &&
RUN: clang -E %s -x=c++ | not grep block_2 &&
RUN: clang -E %s -x=c | not grep block
*/
#if true
block_1
#endif
#if false
block_2
#endif