Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0537.cs
1 // CS0537: The class System.Object cannot have a base class or implement an interface
2 // Line: 5
3
4 namespace System {
5         class Object: ICloneable {
6         }
7 }
8
9
10