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

cs0534-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a2f20ea44aa5d512b6e26019a30cfc2e05115f0 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0534-2.cs: `DerivedClass' does not implement inherited abstract member `BaseClass.Value.set'
// Line: 8

abstract class BaseClass {
        protected abstract int Value { get; set; }
}

class DerivedClass: BaseClass {
        protected override int Value { get {} }
}