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: 64dab6c6489a435aa0bea71ed30e63709ddcf606 (plain)
1
2
3
4
5
6
7
// CS0509: `InstanceClass': cannot derive from sealed type `E'
// Line: 6

public enum E {}

class InstanceClass: E {
}