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: 81e74f838b6e671582cba978e08a90151e6a6916 (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() {
        }
}