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