(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0536.cs
blob4668354c686afb3630ecd1a8a89622ca60c0ade2
1 // cs0536.cs: Clone method is not public, so it cant implement ICloneable
2 // Line: 4
3 using System;
4 public class MyTest : ICloneable {
5 object Clone(){
6 return MemberwiseClone();
9 static void Main ()