Switch to compiler-tester
[mono.git] / mcs / tests / gen-96.cs
diff --git a/mcs/tests/gen-96.cs b/mcs/tests/gen-96.cs
deleted file mode 100644 (file)
index 65d1732..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;\r
-\r
-class Foo<T>\r
-{ }\r
-\r
-class Test\r
-{\r
-       static void Hello<T> (Foo<T>[] foo, int i)\r
-       {\r
-               Foo<T> element = foo [0];\r
-               Console.WriteLine (element);\r
-               if (i > 0)\r
-                       Hello<T> (foo, i - 1);\r
-       }\r
-\r
-       public static void Quicksort<U> (Foo<U>[] arr)\r
-       {\r
-               Hello<U> (arr, 1);\r
-       }\r
-\r
-       static void Main ()\r
-       {\r
-               Foo<int>[] foo = new Foo<int> [1];\r
-               foo [0] = new Foo<int> ();\r
-               Quicksort (foo);\r
-       }\r
-}\r