2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-726.cs
blob73cde6e7ce1839262970873fad74645656a65b3f
1 interface IFoo
3 object Clone ();
6 class CS0102 : IFoo
8 object IFoo.Clone()
10 return this;
13 public class Clone { }
15 public static void Main ()