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