llvm-project/clang-tools-extra/test/modularize/Inputs/NestedMacro.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
180 B
C
Raw Normal View History

// Verification of fix for nested macro.
#define FUNCMACROINNER(a) a
#define FUNCMACROOUTER(b, c) FUNCMACROINNER(b) + FUNCMACROINNER(c)
int FuncMacroValue = FUNCMACROOUTER(1, 2);