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

cs0713-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f7cfdda0a4db468afa036e77d6e154ad053ea7e (plain)
1
2
3
4
5
6
7
8
// cs0713.cs: Static class `StaticClass' cannot derive from type `System.ArgumentNullException'. Static classes must derive from object
// Line: 4

static partial class StaticClass {
}

static partial class StaticClass : System.ArgumentNullException {
}