Sign in
llvm
/
clang
/
3ad9e4889adcb044907bc3e707d89a7ac1b3ee30
/
.
/
test
/
Preprocessor
/
macro_fn_lparen_scan2.c
blob: fb64befaf1e9ab461eec0652c6483fb2f1479ad6 [
file
] [
log
] [
blame
]
// RUN: clang-cc -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) */