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: c166a74684f5d91af1e89d441e5cb6a7d1f102e9 (plain)
1
2
3
4
5
// cs0714.cs: 'StaticClass': static classes cannot implement interfaces
// Line: 4

static class StaticClass: System.IComparable {
}