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: eab5440f0fb37c54d03c144dbdb082d7c0b91fc0 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0534.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 {} }
}