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

cs0535.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 185c960a5be794fd386f7cb91060ccb727168936 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0535.cs: 'Class' does not implement interface member 'Interface.Method()'
// Line: 8

interface Interface {
        void Method();
}

class Class: Interface {
}