Remove debugging code from generated code
[mono-project.git] / mcs / errors / cs0536.cs
blob38225f861d8cda5bd432910484928016b5785eab
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();
9 static void Main ()