macro_fn_lparen_scan2.c 148 B

1234567
  1. // RUN: %clang_cc1 -E %s | grep 'FUNC (3 +1);'
  2. #define F(a) a
  3. #define FUNC(a) (a+1)
  4. F(FUNC) FUNC (3); /* final token sequence is FUNC(3+1) */