Cosmos/source/IL2CPU.Tests/Tests/TwoMethodsWithLocals/TwoMethodsWithLocals.cs
2007-09-21 15:41:25 +00:00

22 lines
No EOL
322 B
C#

using System;
public class ConsoleDrv
{
static void Main()
{
int Value = Function2();
}
public static int Function1()
{
int TestValue = 2;
return TestValue;
}
public static int Function2()
{
int TestValue2 = Function1();
int TestValue = 3;
return TestValue + TestValue2;
}
}