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

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

static partial class StaticClass
{
}

static partial class StaticClass: System.ICloneable
{
}