Author: marek
Date: 2007-02-23 13:59:54 -0500 (Fri, 23 Feb 2007)
New Revision: 73376

Added:
   trunk/mcs/tests/test-anon-66.cs
Log:
New test based on #80878

Added: trunk/mcs/tests/test-anon-66.cs
===================================================================
--- trunk/mcs/tests/test-anon-66.cs     2007-02-23 18:59:02 UTC (rev 73375)
+++ trunk/mcs/tests/test-anon-66.cs     2007-02-23 18:59:54 UTC (rev 73376)
@@ -0,0 +1,17 @@
+public class Test
+{
+       public delegate void TestEventHandler ();
+       public event TestEventHandler testEvent;
+
+       public event TestEventHandler TestEvent
+       {
+               add
+               {
+                       TestEventHandler fun = delegate () { value (); };
+                       fun ();
+               }
+               remove { }
+       }
+       
+       public static void Main () { }
+}


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

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

Reply via email to