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

i4.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f89988f2cb371b86cbf3044256690fabf9071b6b (plain)
1
2
3
4
5
6
7
8
// cs0509.cs: base class is sealed
// Line: 7
struct V {
	int v;
}

class X : V {
}