Switch to compiler-tester
[mono.git] / mcs / tests / gen-51.cs
diff --git a/mcs/tests/gen-51.cs b/mcs/tests/gen-51.cs
deleted file mode 100644 (file)
index 5fc94f7..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-
-public class Foo<T>
-       where T : A
-{
-       public void Test (T t)
-       {
-               Console.WriteLine (t);
-               Console.WriteLine (t.GetType ());
-               t.Hello ();
-       }
-}
-
-public class A
-{
-       public void Hello ()
-       {
-               Console.WriteLine ("Hello World");
-       }
-}
-
-public class B : A
-{
-}
-
-class X
-{
-       static void Main ()
-       {
-               Foo<B> foo = new Foo<B> ();
-               foo.Test (new B ());
-       }
-}