aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/macro_fn_lparen_scan2.c
blob: fa4d5047fb08b22c7f153c110a3c727bf1ef0a3f (plain)
1
2
3
4
5
6
7
// RUN: clang -E %s | grep 'FUNC (3 +1);'

#define F(a) a 
#define FUNC(a) (a+1) 

F(FUNC) FUNC (3); /* final token sequence is FUNC(3+1) */