brintos

brintos / llvm-project-archived public Read only

0
0
Text · 358 B · f6dc459 Raw
19 lines · cpp
1/* RUN: %clang_cc1 -E %s -x c++ | FileCheck -check-prefix CPP %s2   RUN: %clang_cc1 -E %s -x c | FileCheck -check-prefix C %s3   RUN: %clang_cc1 -E %s -x c++ -verify -Wundef4*/5// expected-no-diagnostics6 7#if true8// CPP: test block_19// C-NOT: test block_110test block_111#endif12 13#if false14// CPP-NOT: test block_215// C-NOT: test block_216test block_217#endif18 19