System.Drawing: added email to icon and test file headers
[mono.git] / mcs / errors / cs0737-2.cs
1 // CS0737: `MyTest' 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 MyTest : ICloneable
7 {
8         object Clone()
9         {
10                 return MemberwiseClone();
11         }
12 }
13