Cosmos/source/IL2CPU.Tests/Tests/TestInt64Result/TestInt64Result.cs
2008-01-02 09:43:49 +00:00

19 lines
No EOL
210 B
C#

using System;
class Test
{
static int Main()
{
long xLong = GetValue();
if(xLong == 1) {
return 0;
} else {
return 1;
}
}
public static long GetValue()
{
return 1;
}
}