summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1512.cs
blob: a9b76b4bc09642d384fe98410795c46bd576b3b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1512: 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 ();
}