Switch to compiler-tester
[mono.git] / mcs / tests / conv-dll.cs
diff --git a/mcs/tests/conv-dll.cs b/mcs/tests/conv-dll.cs
deleted file mode 100644 (file)
index a4d2ca9..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// Compiler options: -t:library
-
-public class A
-{
-       public static bool operator==(A a1, A a2)
-       {
-               return true;
-       }
-
-       public static bool operator!=(A a1, A a2)
-       {
-               return false;
-       }
-
-       public override bool Equals (object o)
-       {
-               return true;
-       }
-
-       public override int GetHashCode ()
-       {
-               return base.GetHashCode ();
-       }
-
-       public int KK () { return 1; }
-}
-
-public class B : A {
-}
-