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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@novell.com>2002-07-20 01:26:49 +0400
committerMartin Baulig <martin@novell.com>2002-07-20 01:26:49 +0400
commit105eb255ec0c1e96fe5ffc58af6af1005b0adc6a (patch)
treee4218507a07eb88f31dd6a669cb01e79e610759a /mcs/tests/test-145.cs
parentb9a7cc3aac67c836140a961cf126493b3fb6bb7a (diff)
2002-07-19 Martin Baulig <martin@gnome.org>
* test-145.cs: Added test for bug #25318 which is now fixed. svn path=/trunk/mcs/; revision=5953
Diffstat (limited to 'mcs/tests/test-145.cs')
-rw-r--r--mcs/tests/test-145.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/tests/test-145.cs b/mcs/tests/test-145.cs
new file mode 100644
index 00000000000..78cb9a6811d
--- /dev/null
+++ b/mcs/tests/test-145.cs
@@ -0,0 +1,11 @@
+using System;
+
+class JagArrayTest
+{
+ private static int [][] array = { new int [] { 1 }};
+
+ public static void Main() {
+ Console.WriteLine(array[0][0]);
+ }
+}
+