opnsense-src/test/Preprocessor/cxx_true.cpp

16 lines
275 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
/* RUN: %clang_cc1 -E %s -x c++ | grep block_1
RUN: %clang_cc1 -E %s -x c++ | not grep block_2
RUN: %clang_cc1 -E %s -x c | not grep block
RUN: %clang_cc1 -E %s -x c++ -verify -Wundef
2009-06-02 13:58:47 -04:00
*/
// expected-no-diagnostics
2009-06-02 13:58:47 -04:00
#if true
block_1
#endif
#if false
block_2
#endif