mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 16:09:46 -04:00
8 lines
248 B
C
8 lines
248 B
C
// RUN: printf -- "-DX=A\nTHIS_SHOULD_NOT_EXIST_IN_THE_OUTPUT" | xargs -0 %clang -E %s | FileCheck -strict-whitespace %s
|
|
// REQUIRES: shell
|
|
|
|
// Per GCC -D semantics, \n and anything that follows is ignored.
|
|
|
|
// CHECK: {{^START A END$}}
|
|
START X END
|