[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-757.cs
1 public class TestClass1
2 {
3         void Test ()
4         {
5                 double[] zCoords = new double[long.MaxValue];
6                 zCoords = new double[ulong.MaxValue];
7                 zCoords = new double[uint.MaxValue];
8         }
9
10         public static int Main ()
11         {
12                 double[] zCoords = new double[2 * 2] { 1, 2, 3, 4 };
13                 return 0;
14         }
15 }