Switch to compiler-tester
[mono.git] / mcs / tests / gen-146.cs
diff --git a/mcs/tests/gen-146.cs b/mcs/tests/gen-146.cs
deleted file mode 100644 (file)
index 667d19d..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-
-public class MyLinkedList<T> {
-       protected Node first;
-
-       protected class Node
-       {
-               public T item;
-
-               public Node (T item)
-               {
-                       this.item = item; 
-               }
-       }
-}
-
-class SortedList<U> : MyLinkedList<U>
-{
-       public void Insert (U x) { 
-               Node node = first;
-       }
-}
-
-class X {
-       static void Main ()
-       { }
-}