[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs1512.cs
bloba9b76b4bc09642d384fe98410795c46bd576b3b9
1 // CS1512: 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 ();