summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0535.cs
blob: cfadd82b1a2743cc1f1e6b35eaf7981846528aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0535: `Class' does not implement interface member `Interface.Method()'
// Line: 8

interface Interface {
        void Method();
}

class Class: Interface {
}