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

test-757.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7ff12146fba80ebf91af91fb1c3bf3f69ecde52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class TestClass1
{
	void Test ()
	{
		double[] zCoords = new double[long.MaxValue];
		zCoords = new double[ulong.MaxValue];
		zCoords = new double[uint.MaxValue];
	}

	public static int Main ()
	{
		double[] zCoords = new double[2 * 2] { 1, 2, 3, 4 };
		return 0;
	}
}