Switch to compiler-tester
[mono.git] / mcs / tests / gen-158.cs
diff --git a/mcs/tests/gen-158.cs b/mcs/tests/gen-158.cs
deleted file mode 100755 (executable)
index 5f547f9..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-public class Moo<C>
-       where C : Moo<C>.Foo
-{
-       public class Foo
-       { }
-}
-
-public class Test : Moo<Test>.Foo
-{
-}
-
-class X
-{
-       static void Main ()
-       {
-               Moo<Test> moo = new Moo<Test> ();
-       }
-}