Cosmos/source/IL2CPU.Tests/Tests/SimpleStaticField/SimpleStaticField.cs
2007-10-07 12:53:38 +00:00

14 lines
No EOL
252 B
C#

using System;
class ConsoleDrv {
public static int SupposedLength;
static int Main() {
string MyString = "Hello";
SupposedLength = 5;
if (MyString.Length != SupposedLength) {
return 1;
}
SupposedLength = 2;
return 0;
}
}