Switch to compiler-tester
[mono.git] / mcs / tests / gen-84.cs
diff --git a/mcs/tests/gen-84.cs b/mcs/tests/gen-84.cs
deleted file mode 100644 (file)
index c0449b2..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-namespace HasherBuilder
-{
-       public class ByPrototype<S>
-       {
-               public static IHasher<S> Examine()
-               {
-                       return null;
-               }
-       }
-}
-
-public interface IHasher<T>
-{
-}
-
-public class ArrayList<U>
-{
-       public IHasher<U> GetHasher ()
-       {
-               return HasherBuilder.ByPrototype<U>.Examine();
-       }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}
-