do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-452.cs
1 class Foo
2 {
3         static public Foo x;
4 }
5
6 class Test
7 {
8         static void Main ()
9         {
10                 Foo Foo;
11                 Foo = Foo.x;
12         }
13 }