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