Align libmonoruntime vcxproj with makefile.
[mono.git] / mcs / errors / cs1512.cs
1 // CS1512: Keyword `base' is not available in the current context
2 // Line: 11
3
4 class Base
5 {
6     private string B () { return "a"; }
7 }
8
9 class E
10 {
11    private string B = base.B ();
12 }