Switch to compiler-tester
[mono.git] / mcs / tests / gen-155.cs
diff --git a/mcs/tests/gen-155.cs b/mcs/tests/gen-155.cs
deleted file mode 100644 (file)
index 7b61543..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-public interface IBase
-{
-       void DoSomeThing();
-}
-
-public interface IExtended : IBase
-{
-       void DoSomeThingElse();
-}
-
-public class MyClass<T> where T: IExtended, new()
-{
-       public MyClass()
-       {
-               T instance = new T();
-               instance.DoSomeThing();
-       }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}