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: 51ea9dd9f8551cf747cdb5f45ffaaa77397bbff5 (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;
        }
}