Author: marek
Date: 2008-02-20 13:07:04 -0500 (Wed, 20 Feb 2008)
New Revision: 96281

Added:
   trunk/mcs/tests/test-anon-74.cs
Log:
2008-02-20  Marek Safar  <[EMAIL PROTECTED]>

        A test for bug #363218
        


Added: trunk/mcs/tests/test-anon-74.cs
===================================================================
--- trunk/mcs/tests/test-anon-74.cs     2008-02-20 18:05:44 UTC (rev 96280)
+++ trunk/mcs/tests/test-anon-74.cs     2008-02-20 18:07:04 UTC (rev 96281)
@@ -0,0 +1,16 @@
+static class Foo
+{
+       delegate string[,] SimpleDelegate();
+
+       static void Baz(SimpleDelegate sd)
+       {
+               sd();
+       }
+
+       public static void Main(string[] args)
+       {
+               Baz(delegate() {
+                       return new string[,] { { "aa" } , { "bb" } };
+               });
+       }
+}
\ No newline at end of file


Property changes on: trunk/mcs/tests/test-anon-74.cs
___________________________________________________________________
Name: svn:eol-style
   + native

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to