2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1512.cs
bloba0e26d8d6ceb6a615c488a931618c486001168ac
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 ();