11 lines
167 B
C#
11 lines
167 B
C#
|
// CS0537: The class System.Object cannot have a base class or implement an interface
|
||
|
// Line: 5
|
||
|
|
||
|
namespace System {
|
||
|
class Object: ICloneable {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|