xref: /minix3/external/bsd/llvm/dist/clang/test/Preprocessor/macro_expand.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc #define X() Y
4*f4a2713aSLionel Sambuc #define Y() X
5*f4a2713aSLionel Sambuc 
6*f4a2713aSLionel Sambuc A: X()()()
7*f4a2713aSLionel Sambuc // CHECK: {{^}}A: Y{{$}}
8*f4a2713aSLionel Sambuc 
9*f4a2713aSLionel Sambuc // PR3927
10*f4a2713aSLionel Sambuc #define f(x) h(x
11*f4a2713aSLionel Sambuc #define for(x) h(x
12*f4a2713aSLionel Sambuc #define h(x) x()
13*f4a2713aSLionel Sambuc B: f(f))
14*f4a2713aSLionel Sambuc C: for(for))
15*f4a2713aSLionel Sambuc 
16*f4a2713aSLionel Sambuc // CHECK: {{^}}B: f(){{$}}
17*f4a2713aSLionel Sambuc // CHECK: {{^}}C: for(){{$}}
18*f4a2713aSLionel Sambuc 
19*f4a2713aSLionel Sambuc // rdar://6880648
20*f4a2713aSLionel Sambuc #define f(x,y...) y
21*f4a2713aSLionel Sambuc f()
22