(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1512.cs
blob8b85fd37682c65b38a4b984a4892682ebde84c12
1 // cs1512.cs: Keyword 'base' is not available in the current context
2 // Line: 11
4 class Base
6 private string B () { return "a"; }
9 class E
11 private string B = base.B ();