Switch to compiler-tester
[mono.git] / mcs / tests / gen-117.cs
diff --git a/mcs/tests/gen-117.cs b/mcs/tests/gen-117.cs
deleted file mode 100644 (file)
index 71dc3b8..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-
-public interface IFoo<T>
-{ }
-
-public class Foo<T>
-{
-       public static bool Test (T x)
-       {
-               return x is IFoo<T>;
-       }
-}
-
-class X
-{
-       static void Main ()
-       {
-               Foo<int>.Test (3);
-       }
-}