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

cs0509.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 925b1fabf99fcc3dc54c2302f05d161b4231ece2 (plain)
1
2
3
4
5
6
7
8
9
// CS0509: `X': cannot derive from sealed type `V'
// Line: 8

struct V {
	int v;
}

class X : V {
}