Switch to compiler-tester
[mono.git] / mcs / tests / xml-006.cs
diff --git a/mcs/tests/xml-006.cs b/mcs/tests/xml-006.cs
deleted file mode 100644 (file)
index 217a982..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-// Compiler options: -doc:xml-006.xml
-using System;
-
-namespace Testing
-{
-       /// <summary>
-       /// comment for enum type
-       /// </summary>
-       public enum EnumTest
-       {
-               Foo,
-               Bar,
-       }
-
-       /// <summary>
-       /// comment for enum type
-       /// </incorrect>
-       public enum EnumTest2
-       {
-               Foo,
-               Bar,
-       }
-
-       /**
-       <summary>
-       Java style comment for enum type
-       </summary>
-       */
-       public enum EnumTest3
-       {
-               Foo,
-               Bar,
-       }
-
-       public class Test
-       {
-               public static void Main ()
-               {
-               }
-       }
-}
-