[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0102-17.cs
1 // CS0102: The type `CS0102' already contains a definition for `Clone'
2 // Line: 6
3
4 class CS0102
5 {
6         object Clone ()
7         {
8                 return this;
9         }
10         
11         public class Clone
12         {
13         }
14 }