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

cs0175-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3fabcb37732752d2da06f139702c5b545ca0bede (plain)
1
2
3
4
5
6
7
8
9
// cs0175-2.cs: Use of keyword `base' is not valid in this context
// Line: 13

class DerivedClass {
        public DerivedClass() {
                base = null;
        }
}