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

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

static class StaticClass: System.ArgumentException {
}