Switch to compiler-tester
[mono.git] / mcs / tests / gen-93.cs
diff --git a/mcs/tests/gen-93.cs b/mcs/tests/gen-93.cs
deleted file mode 100644 (file)
index b9f4b61..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-
-public class Foo<T>
-{
-       public readonly T Item;
-
-       public Foo (T item)
-       {
-               this.Item = item;
-       }
-
-       static void maketreer (out Node rest)
-       {
-               rest = new Node ();
-       }
-
-       class Node
-       { }
-
-       public void Hello<U> ()
-       {
-               Foo<U>.Node node;
-               Foo<U>.maketreer (out node);
-       }
-}
-
-class X
-{
-       static void Main ()
-       { }
-}