Switch to compiler-tester
[mono.git] / mcs / tests / xml-026.cs
diff --git a/mcs/tests/xml-026.cs b/mcs/tests/xml-026.cs
deleted file mode 100644 (file)
index 4ef8485..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Compiler options: -doc:xml-026.xml
-namespace Testing
-{
-       /// test class
-       public class Test
-       {
-               public static void Main ()
-               {
-               }
-
-               /// <param>anonymous</param>
-               public void Foo (int i) {}
-
-               /// <param name='i'>correct</param>
-               /// <param name='i'>duplicate</param>
-               public void Bar (int i) {}
-
-               /// <param name='mismatch'>mismatch</param>
-               public void Baz (int i) {}
-
-               /// <param name='arr'>varargs</param>
-               public void Var (params int [] arr) {}
-       }
-}