blob: 5cf39f47735844ad87cc5c63956fb60794d8a28a (
plain)
1
2
3
4
5
6
7
8
9
|
using INTPTR = const int *;
int foo(INTPTR ParamPtr, unsigned ParamUnsigned, bool ParamBool) {
if (ParamBool) {
typedef int INTEGER;
const INTEGER CONSTANT = 7;
return CONSTANT;
}
return ParamUnsigned;
}
|