do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-428.cs
1 using globalA = A;
2
3 class A { }
4
5 class X {
6         class A { }
7         static void Main ()
8         {
9                 globalA a = new global::A ();
10                 System.Console.WriteLine (a.GetType ());
11         }
12 }