Switch to compiler-tester
[mono.git] / mcs / tests / gen-102.cs
diff --git a/mcs/tests/gen-102.cs b/mcs/tests/gen-102.cs
deleted file mode 100644 (file)
index 9b75103..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-
-class A<T>
-       where T: IComparable
-{
-}
-
-class B<U,V>
-       where U: IComparable
-       where V: A<U>
-{
-}
-
-class Driver
-{
-       public static void Main ()
-       {
-               A<int> a_int;
-               B<int,A<int>> b_stuff;
-       }
-}