Switch to compiler-tester
[mono.git] / mcs / tests / xml-036.cs
diff --git a/mcs/tests/xml-036.cs b/mcs/tests/xml-036.cs
deleted file mode 100644 (file)
index 3a66f96..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Compiler options: -doc:xml-036.xml -warn:1 -warnaserror
-/// <summary><see cref="@true" />, <see cref="Test.@true" />, <see cref="@Whatever" /></summary>
-public enum Test {
-       /// <summary>Yes</summary>
-       @true,
-       /// <summary>Nope</summary>
-       @false,
-       /// <summary>Maybe</summary>
-       Whatever
-}
-
-/// <summary><see cref="Foo.@true" /></summary>
-public abstract class Foo {
-       /// <summary>Foo</summary>
-       public abstract void @true();
-       /// main.
-       public static void Main() {}
-}