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);