Switch to compiler-tester
[mono.git] / mcs / tests / xml-037.cs
diff --git a/mcs/tests/xml-037.cs b/mcs/tests/xml-037.cs
deleted file mode 100644 (file)
index 10b7d2f..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Compiler options: -doc:xml-037.xml
-using System;
-using System.Reflection;
-
-/// <summary>
-/// <see cref="AppDomain.AssemblyResolve" />
-/// </summary>
-public class Whatever {
-  /// <summary>
-  /// </summary>
-  public static void Main() {
-       foreach (MemberInfo mi in typeof (AppDomain).FindMembers (
-               MemberTypes.All,
-               BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance,
-               Type.FilterName,
-               "AssemblyResolve"))
-               Console.WriteLine (mi.GetType ());
-  }
-}
-