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: 53f763e21578865a9be72f2f9f2f985801786608 (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 {
}