mirror of
https://github.com/intel/llvm.git
synced 2026-02-08 08:57:43 +08:00
15 lines
208 B
C
15 lines
208 B
C
// RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
|
|
|
|
#define A(b) -#b , - #b , -# b , - # b
|
|
A()
|
|
|
|
// CHECK: {{^}}-"" , - "" , -"" , - ""{{$}}
|
|
|
|
|
|
#define t(x) #x
|
|
t(a
|
|
c)
|
|
|
|
// CHECK: {{^}}"a c"{{$}}
|
|
|