[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0535.cs
1 // CS0535: `Class' does not implement interface member `Interface.Method()'
2 // Line: 8
3
4 interface Interface {
5         void Method();
6 }
7
8 class Class: Interface {
9 }
10
11