Switch to compiler-tester
[mono.git] / mcs / tests / 2test-5.cs
diff --git a/mcs/tests/2test-5.cs b/mcs/tests/2test-5.cs
deleted file mode 100644 (file)
index 572e9bc..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Compiler options: -langversion:default
-
-//
-// Anonymous method group conversions
-//
-
-class X {
-       delegate void T ();
-       static event T Click;
-
-       static void Method ()
-       {
-       }
-
-       static void Main ()
-       {
-               T t;
-
-               // Method group assignment
-               t = Method;
-
-               Click += Method;
-       }
-}