Switch to compiler-tester
[mono.git] / mcs / tests / gen-25.cs
diff --git a/mcs/tests/gen-25.cs b/mcs/tests/gen-25.cs
deleted file mode 100644 (file)
index f4e7b42..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-class Foo
-{
-       public Foo ()
-       { }
-
-       public void Hello<T> (T t)
-       {
-               // We're boxing the type parameter `T' to an object here.
-               Whatever (t);
-       }
-
-       public void Whatever (object o)
-       {
-               System.Console.WriteLine (o.GetType ());
-       }
-}
-
-class X
-{
-       static void Test (Foo foo)
-       {
-               foo.Hello<int> (531);
-       }
-
-       static void Main ()
-       {
-               Foo foo = new Foo ();
-               Test (foo);
-       }
-}