Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-726.cs
1 interface IFoo
2 {
3         object Clone ();
4 }
5
6 class CS0102 : IFoo
7 {
8         object IFoo.Clone()
9         {
10                 return this;
11         }
12
13         public class Clone { }
14
15         public static void Main ()
16         {
17         }
18 }