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

cs0714.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc46ca1678961c42e44ffea626e2a3f485907b99 (plain)
1
2
3
4
5
// cs0714.cs: `StaticClass': static classes cannot implement interfaces
// Line: 4

static class StaticClass: System.IComparable {
}