Switch to compiler-tester
[mono.git] / mcs / tests / gen-6.cs
diff --git a/mcs/tests/gen-6.cs b/mcs/tests/gen-6.cs
deleted file mode 100644 (file)
index 5faf6e9..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-// Using an array of a type parameter.
-
-class Stack<T>
-{
-       int size;
-       T[] data;
-
-       public Stack ()
-       {
-               data = new T [200];
-       }
-
-       public void Push (T item)
-       {
-               data [size++] = item;
-       }
-
-       public T Pop ()
-       {
-               return data [--size];
-       }
-
-       public void Hello (T t)
-       {
-               System.Console.WriteLine ("Hello: {0}", t);
-       }
-}
-
-class Test
-{
-       static void Main ()
-       {
-       }
-}