[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0539.cs
1 // CS0539: `A.B' in explicit interface declaration is not a member of interface
2 // Line:
3
4 interface A {
5 }
6
7 class X : A {
8         void A.B () {}
9         static void Main () {}
10 }