1 using INTPTR = const int *; foo(INTPTR ParamPtr,unsigned ParamUnsigned,bool ParamBool)2 int 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