summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0537.cs
blob: 23bc94c4bad3e08da90d2b104c09a2f67eddaf69 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0537: The class System.Object cannot have a base class or implement an interface
// Line: 5

namespace System {
        class Object: ICloneable {
        }
}