[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0737-2.cs
blobccb60fb66c0383797731edb144272bab3d1369ff
1 // CS0737: `MyTest' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' is not public
2 // Line: 6
4 using System;
6 public class MyTest : ICloneable
8 object Clone()
10 return MemberwiseClone();