Home | History | Annotate | Download | only in Preprocessor
      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