Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0537.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 393763bcbd5a2f693b7296e7cadd011724b5a08e (plain)
1
2
3
4
5
6
7
8
9
10
// cs0537.cs: The class System.Object cannot have a base class or implement an interface
// Line: 5

namespace System {
        class Object: ICloneable {
        }
}