blob: fa4d5047fb08b22c7f153c110a3c727bf1ef0a3f [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001// RUN: clang -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