Home | History | Annotate | Download | only in Preprocessor
      1 // RUN: %clang_cc1 -E %s | grep 'FUNC (3 +1);'
      2 
      3 #define F(a) a
      4 #define FUNC(a) (a+1)
      5 
      6 F(FUNC) FUNC (3); /* final token sequence is FUNC(3+1) */
      7 
      8