Sign in
rust
/
rust-lang
/
llvm-project
/
c39e100ad3cbb4c1b587224a6be2bb732c1d6bf4
/
.
/
clang-tools-extra
/
test
/
modularize
/
Inputs
/
NestedMacro.h
blob: 2cfc92c081b1d1f26e76e287cb85221f5ec5c5d5 [
file
] [
log
] [
blame
]
// Verification of fix for nested macro.
#define
FUNCMACROINNER
(
a
)
a
#define
FUNCMACROOUTER
(
b
,
c
)
FUNCMACROINNER
(
b
)
+
FUNCMACROINNER
(
c
)
int
FuncMacroValue
=
FUNCMACROOUTER
(
1
,
2
);