[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0737.cs
1 // CS0737: `MySubClass' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' is not public
2 // Line: 6
3
4 using System;
5
6 public class MySubClass : MyTest, ICloneable
7 {
8 }
9
10 public class MyTest
11 {
12         internal object Clone ()
13         {
14                 return MemberwiseClone ();
15         }
16 }