blob: c23e7412b8505b3d2df19edfed3b2b6b3b88a5d3 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -E %s | grep 'FUNC (3 +1);'
Reid Spencer5f016e22007-07-11 17:01:13 +00002
3#define F(a) a
4#define FUNC(a) (a+1)
5
6F(FUNC) FUNC (3); /* final token sequence is FUNC(3+1) */
7