cleol
[mcs.git] / errors / cs0737.cs
blob1f574780914435db70013fc02f5d5ee6e25db1bc
1 // CS0737: `MySubClass' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' in 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 ();