xref: /aosp_15_r20/external/clang/test/Preprocessor/_Pragma-physloc.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
2 // CHECK: {{^}}#pragma x y z{{$}}
3 // CHECK: {{^}}#pragma a b c{{$}}
4 
5 _Pragma("x y z")
6 _Pragma("a b c")
7 
8