[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0122-8.cs
1 // CS0122: `A.AA.Foo()' is inaccessible due to its protection level
2 // Line: 16
3 // Compiler options: -r:CS0122-8-lib.dll
4
5 public class Test
6 {
7         public static void Main ()
8         {
9                 new B.BB ().Foo ();
10         }
11 }