Home | History | Annotate | Line # | Download | only in tests
      1 #define a() x
      2 a()
      3 a ()
      4 #define b(p) p
      5 x/**/b(1)/**/x
      6 x/**/b (1)/**/x
      7 x/**/b()/**/x
      8 #define c(p,q) p/**/q
      9 x/**/c(1,2)/**/x
     10 x/**/c(1)/**/x
     11 x/**/c()/**/x
     12