2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-757.cs
blobe7ff12146fba80ebf91af91fb1c3bf3f69ecde52
1 public class TestClass1
3 void Test ()
5 double[] zCoords = new double[long.MaxValue];
6 zCoords = new double[ulong.MaxValue];
7 zCoords = new double[uint.MaxValue];
10 public static int Main ()
12 double[] zCoords = new double[2 * 2] { 1, 2, 3, 4 };
13 return 0;