2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0038-1.cs
blob9508922bb330b037616ef3071744e0ced4ab4c13
1 // cs0038-1.cs: Cannot access a nonstatic member of outer type `A' via nested type `C.N'
2 // Line: 12
4 class A {
5 protected int n = 0;
8 class B : A { }
10 class C : B {
11 class N {
12 internal int foo () { return n; }
14 public static int Main () {
15 N a = new N ();
16 return a.foo ();