Files
linux-packaging-mono/mcs/tests/test-817.cs

17 lines
170 B
C#
Raw Normal View History

namespace System
{
public struct Int32
{
public int Value;
}
class Program
{
public static void Main ()
{
Int32 a = new Int32 ();
a.Value = 6;
}
}
}