xref: /minix3/external/bsd/llvm/dist/clang/test/Preprocessor/macro_rescan2.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -E | grep 'a: 2\*f(9)'
2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -E | grep 'b: 2\*9\*g'
3*f4a2713aSLionel Sambuc 
4*f4a2713aSLionel Sambuc #define f(a) a*g
5*f4a2713aSLionel Sambuc #define g f
6*f4a2713aSLionel Sambuc a: f(2)(9)
7*f4a2713aSLionel Sambuc 
8*f4a2713aSLionel Sambuc #undef f
9*f4a2713aSLionel Sambuc #undef g
10*f4a2713aSLionel Sambuc 
11*f4a2713aSLionel Sambuc #define f(a) a*g
12*f4a2713aSLionel Sambuc #define g(a) f(a)
13*f4a2713aSLionel Sambuc 
14*f4a2713aSLionel Sambuc b: f(2)(9)
15*f4a2713aSLionel Sambuc 
16