Switch to compiler-tester
[mono.git] / mcs / tests / xml-007.cs
diff --git a/mcs/tests/xml-007.cs b/mcs/tests/xml-007.cs
deleted file mode 100644 (file)
index 17758d3..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// Compiler options: -doc:xml-007.xml
-using System;
-
-namespace Testing
-{
-       /// <summary>
-       /// comment for delegate type
-       /// </summary>
-       public delegate void MyDelegate (object o, EventArgs e);
-
-       /// <summary>
-       /// comment for delegate type
-       /// </incorrect>
-       public delegate void MyDelegate2 (object o, EventArgs e);
-
-       /**
-       <summary>
-       Javadoc comment for delegate type
-       </summary>
-       */
-       public delegate void MyDelegate3 (object o, EventArgs e);
-
-       public class Test
-       {
-               public static void Main ()
-               {
-               }
-       }
-}
-