[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-792.cs
index a8dca5c034a4db6cc1b0f834e1bb2b6d05db1afc..daa305048a45fb27c343a7dcffd03bac54d1f641 100644 (file)
@@ -2,6 +2,7 @@
 
 // Compilation test only for missing 2nd level dependecies
 
+[A2]
 class Program
 {
        void Test ()
@@ -10,14 +11,17 @@ class Program
                
                var s = new MultipleSameNames ();
                s.AA = "1";
+               
+               Overload.Test (1);
        }
        
        void Test2 (IMemberDelayed md)
        {
                md.Working ();
+               var t = typeof (IMemberDelayed);
        }
 
-       static void Main ()
+       public static void Main ()
        {
        }
 }