Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-817.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9bdf32a6b88833f085c32d56e4aa494912a853d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace System
{
	public struct Int32
	{
		public int Value;
	}

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