Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
Preprocessor
/
macro_fn_lparen_scan2.c
blob: c23e7412b8505b3d2df19edfed3b2b6b3b88a5d3 [
file
] [
log
] [
blame
]
// 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) */