brintos

brintos / llvm-project-archived public Read only

0
0
Text · 222 B · 5cf39f4 Raw
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