xref: /aosp_15_r20/external/clang/test/Preprocessor/macro_rescan.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
2 
3 #define M1(a) (a+1)
4 #define M2(b) b
5 
6 int ei_1 = M2(M1)(17);
7 // CHECK: {{^}}int ei_1 = (17 +1);{{$}}
8 
9 int ei_2 = (M2(M1))(17);
10 // CHECK: {{^}}int ei_2 = (M1)(17);{{$}}
11 
12