do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-462.cs
1 class X {
2         bool ok = false;
3         
4         void Method (X x)
5         {
6         }
7
8         void Method (string x)
9         {
10                 ok = true;
11         }
12
13         static int Main ()
14         {
15                 X x = new X ();
16
17                 x.Method ((string) null);
18                 if (x.ok)
19                         return 0;
20                 return 1;
21         }
22 }