[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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