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

cs0709.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bcdc117f97ce2a2e541a28df609d21ac9419b11f (plain)
1
2
3
4
5
6
7
8
// cs0709.cs: 'NewClass': Cannot derive from static class 'StaticClass'
// Line: 7

static class StaticClass {
}

class NewClass: StaticClass {
}