2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0737-2.cs
blob408b09dee0fd78ec7894f668f32074ff8036093b
1 // CS0737: `MyTest' 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 MyTest : ICloneable
8 object Clone()
10 return MemberwiseClone();