brintos

brintos / llvm-project-archived public Read only

0
0
Text · 148 B · c23e741 Raw
8 lines · 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