(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1540-5.cs
blob7d6cc4dc1808a2c7f06c2a9f8bd58166892a9217
1 class A {
2 protected int n = 0;
5 class B : A { }
7 class C : B {
8 class N {
9 static internal int foo (B b) { return b.n; }
11 public static int Main () {
12 return N.foo (new B ());