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