Switch to compiler-tester
[mono.git] / mcs / tests / gen-136.cs
diff --git a/mcs/tests/gen-136.cs b/mcs/tests/gen-136.cs
deleted file mode 100644 (file)
index 14d038f..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-using System;
-
-namespace Martin {
-       public class A
-       {
-               public readonly long Data;
-
-               public A (long data)
-               {
-                       this.Data = data;
-               }
-
-               public static explicit operator B (A a)
-               {
-                       return new B ((int) a.Data);
-               }
-       }
-
-       public class B
-       {
-               public readonly int Data;
-
-               public B (int data)
-               {
-                       this.Data = data;
-               }
-
-               public static implicit operator A (B b)
-               {
-                       return new A (b.Data);
-               }
-       }
-
-       class X
-       {
-               static void Main ()
-               {
-                       B? b = new B (5);
-                       A? a = b;
-                       B? c = (B?) a;
-                       B? d = (Martin.B?) a;
-               }
-       }
-}