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

CS0205-3-lib.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 284890aa301cac4117c8816518e51d213390f424 (plain)
1
2
3
4
5
6
7
8
9
// cs0205-2.cs: Cannot call an abstract base member `A.Foobar'
// Line: 15

public abstract class A
{
        protected abstract int Foobar { get; }
}

public abstract class A1 : A { }