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

cs0538.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f54901b51a241d0bd911b1ed5e2153c99d512fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0538.cs: `BaseClass' in explicit interface declaration is not an interface
// Line: 9

class BaseClass {
        public void Foo() {}
}

class InstanceClass: BaseClass {
        void BaseClass.Foo() {
        }
}