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