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

cs0544.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d483d5a6043bff1d2e0d6a22bd22b28de12f7ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0544.cs: 'DerivedClass.value' : cannot override; 'BaseClass.value' is not a property
// Line: 9

class BaseClass {
        protected int value;
}

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