mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
13 lines
200 B
C++
13 lines
200 B
C++
/* 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
|
|
*/
|
|
|
|
#if true
|
|
block_1
|
|
#endif
|
|
|
|
#if false
|
|
block_2
|
|
#endif
|
|
|