10 lines · cpp
1using INTPTR = const int *;2int foo(INTPTR ParamPtr, unsigned ParamUnsigned, bool ParamBool) {3 if (ParamBool) {4 typedef int INTEGER;5 const INTEGER CONSTANT = 7;6 return CONSTANT;7 }8 return ParamUnsigned;9}10 1using INTPTR = const int *;2int foo(INTPTR ParamPtr, unsigned ParamUnsigned, bool ParamBool) {3 if (ParamBool) {4 typedef int INTEGER;5 const INTEGER CONSTANT = 7;6 return CONSTANT;7 }8 return ParamUnsigned;9}10