mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00
14 lines
200 B
C++
14 lines
200 B
C++
/* RUN: clang -E t.cpp -x=c++ | grep block_1 &&
|
|
RUN: clang -E t.cpp -x=c++ | not grep block_2 &&
|
|
RUN: clang -E t.cpp -x=c | not grep block
|
|
*/
|
|
|
|
#if true
|
|
block_1
|
|
#endif
|
|
|
|
#if false
|
|
block_2
|
|
#endif
|
|
|