[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0052-3.cs
1 // CS0052: Inconsistent accessibility: field type `A.B' is less accessible than field `A.C.D.b'
2 // Line: 12
3
4 public class A
5 {
6         private class B { }
7
8         public class C
9         {
10                 protected class D
11                 {
12                         protected B b;
13                 }
14         }
15 }