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: 4aa428cacba7aca1ea9971a0538515ed05493901 (plain)
1
2
3
4
5
6
7
8
9
// cs0175.cs: Use of keyword base is not valid in this context
// Line: 13

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