Switch to compiler-tester
[mono.git] / mcs / tests / gen-28.cs
diff --git a/mcs/tests/gen-28.cs b/mcs/tests/gen-28.cs
deleted file mode 100644 (file)
index f603b9b..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-class Stack<T>
-{
-       T t;
-
-       public Stack (T t)
-       {
-               this.t = t;
-       }
-
-       public object Test ()
-       {
-               // Boxing the type parameter `T' to an object.
-               return t;
-       }
-}
-
-class X
-{
-       public static object Test (Stack<int> stack)
-       {
-               return stack.Test ();
-       }
-
-       static void Main ()
-       {
-               Stack<int> stack = new Stack<int> (9);
-               System.Console.WriteLine (Test (stack));
-       }
-}