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

cs0509-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2c79771a165091bd80d396c3b056845c8d9301c (plain)
1
2
3
4
5
6
7
// cs0509.cs: 'InstanceClass' cannot inherit from sealed class 'E'
// Line: 6

public enum E {}

class InstanceClass: E {
}