mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 18:56:06 +00:00
15 lines
244 B
C++
15 lines
244 B
C++
![]() |
int bar(float Input) { return (int)Input; }
|
||
|
|
||
|
unsigned foo(char Param) {
|
||
|
typedef int INT;
|
||
|
INT Value = Param;
|
||
|
{
|
||
|
typedef float FLOAT;
|
||
|
{
|
||
|
FLOAT Added = Value + Param;
|
||
|
Value = bar(Added);
|
||
|
}
|
||
|
}
|
||
|
return Value + Param;
|
||
|
}
|