Clang Project

clang_source_code/test/Preprocessor/macro_fn_lparen_scan2.c
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