Merge pull request #1821 from iainx/replace-getline
[mono-project.git] / mcs / errors / cs0737.cs
blobbcbe0334a93912cc19880f6464fa59382e6e0f69
1 // CS0737: `MySubClass' 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 MySubClass : MyTest, ICloneable
10 public class MyTest
12 internal object Clone ()
14 return MemberwiseClone ();