do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-091.cs
1 using System;
2
3 public class Foo<T>
4 {
5         Node node;
6
7         public Node Test<V> ()
8         {
9                 return node;
10         }
11
12         public class Node
13         { }
14 }
15
16 class X
17 {
18         static void Main ()
19         { }
20 }