update
[mono.git] / mcs / errors / cs0536.cs
1 // cs0536.cs: `MyTest' does not implement interface member `System.ICloneable.Clone()'. `MyTest.Clone()' is either static, not public, or has the wrong return type
2 // Line: 4
3 using System;
4 public class MyTest : ICloneable {
5         object Clone(){
6                 return MemberwiseClone();
7         }
8
9         static void Main ()
10         {
11         }
12 }
13