Skip to content

Commit

Permalink
New test.
Browse files Browse the repository at this point in the history
svn path=/trunk/mcs/; revision=156746
  • Loading branch information
marek-safar committed May 5, 2010
1 parent 868e383 commit 759d6e5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions mcs/tests/test-757.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,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;
}
}

0 comments on commit 759d6e5

Please sign in to comment.