do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-146.cs
1 using System;
2
3 public class MyLinkedList<T> {
4         protected Node first;
5
6         protected class Node
7         {
8                 public T item;
9
10                 public Node (T item)
11                 {
12                         this.item = item; 
13                 }
14         }
15 }
16
17 class SortedList<U> : MyLinkedList<U>
18 {
19         public void Insert (U x) { 
20                 Node node = first;
21         }
22 }
23
24 class X {
25         static void Main ()
26         { }
27 }