Switch to compiler-tester
[mono.git] / mcs / tests / gen-10.cs
diff --git a/mcs/tests/gen-10.cs b/mcs/tests/gen-10.cs
deleted file mode 100644 (file)
index 26b8815..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-// Type parameters with constraints: check whether we can invoke
-// things on the constrained type.
-
-using System;
-
-interface I
-{
-       void Hello ();
-}
-
-class J
-{
-       public void Foo ()
-       {
-               Console.WriteLine ("Foo!");
-       }
-}
-
-class Stack<T>
-       where T : J, I
-{
-       public void Test (T t)
-       {
-               t.Hello ();
-               t.Foo ();
-       }
-}
-
-class Test
-{
-}
-
-class X
-{
-       static void Main()
-       {
-       }
-}