do not check order sequence if option /order was not used
[mono.git] / mcs / tests / test-792.cs
1 // Compiler options: -r:test-792-lib.dll
2
3 // Compilation test only for missing 2nd level dependecies
4
5 class Program
6 {
7         void Test ()
8         {
9                 new X();
10                 
11                 var s = new MultipleSameNames ();
12                 s.AA = "1";
13                 
14                 Overload.Test (1);
15         }
16         
17         void Test2 (IMemberDelayed md)
18         {
19                 md.Working ();
20                 var t = typeof (IMemberDelayed);
21         }
22
23         static void Main ()
24         {
25         }
26 }
27