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