Clang Project

clang_source_code/test/Preprocessor/_Pragma-physloc.c
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