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: 7329663d15b9ec6c02e5c79a19f8c9c26f0d931a (plain)
1
2
3
4
5
// CS0714: Static class `StaticClass' cannot implement interfaces
// Line: 4

static class StaticClass: System.IComparable {
}