Merge pull request #5714 from alexischr/update_bockbuild
[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 [A2]
6 class Program
7 {
8         void Test ()
9         {
10                 new X();
11                 
12                 var s = new MultipleSameNames ();
13                 s.AA = "1";
14                 
15                 Overload.Test (1);
16         }
17         
18         void Test2 (IMemberDelayed md)
19         {
20                 md.Working ();
21                 var t = typeof (IMemberDelayed);
22         }
23
24         public static void Main ()
25         {
26         }
27 }
28