do not check order sequence if option /order was not used
[mono.git] / mcs / tests / gtest-318.cs
1 // Bug #77963
2 public class Foo<K>
3 {
4 }
5
6 public class Bar<Q> : Goo<Q>
7 {
8         public class Baz
9         {
10         }
11 }
12
13 public class Goo<Q> : Foo<Bar<Q>.Baz>
14 {
15 }
16
17 class X
18 {
19         static void Main ()
20         {
21                 Bar<int> bar = new Bar<int> ();
22                 System.Console.WriteLine (bar);
23         }
24 }