do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-168.cs
1 using System;
2
3 struct X {
4     static public implicit operator string (X x)
5     {
6        return "x";
7     }
8
9 }
10
11 class Test { 
12
13         static public int Main ()
14         {
15                 X x = new X ();
16                 Console.WriteLine (x);
17         
18                 return 0;
19         }
20 }
21