Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1512.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b85fd37682c65b38a4b984a4892682ebde84c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1512.cs: Keyword 'base' is not available in the current context
// Line: 11

class Base
{
    private string B () { return "a"; }
}

class E
{
   private string B = base.B ();
}