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: a8a2271ba2e7bec2e94791d4df61f5bb6c941379 (plain)
1
2
3
4
5
6
7
// cs0509-2.cs: `InstanceClass': cannot derive from sealed class `E'
// Line: 6

public enum E {}

class InstanceClass: E {
}