[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0038-1.cs
1 // CS0038: Cannot access a nonstatic member of outer type `A' via nested type `C.N'
2 // Line: 12
3
4 class A {
5         protected int n = 0;
6 }
7
8 class B : A { }
9
10 class C : B {
11         class N {
12                 internal int foo () { return n; }
13         }
14         public static int Main () {
15                 N a = new N ();
16                 return a.foo ();
17         }
18 }