mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
7 lines
148 B
C
7 lines
148 B
C
// RUN: %clang_cc1 -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) */
|
|
|