1 /* RUN: %clang_cc1 -E %s -x c++ | grep block_1 2 RUN: %clang_cc1 -E %s -x c++ | not grep block_2 3 RUN: %clang_cc1 -E %s -x c | not grep block 4 RUN: %clang_cc1 -E %s -x c++ -verify -Wundef 5 */ 6 // expected-no-diagnostics 7 8 #if true 9 block_1 10 #endif 11 12 #if false 13 block_2 14 #endif 15 16