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

cs0628.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d17d5d3ec278ddbd6b4d2a85889f09867fcf7566 (plain)
1
2
3
4
5
6
7
// cs0628.cs: 'D.a': new protected member declared in sealed class
// Line: 6
// Compiler options: -warnaserror -warn:4

sealed class D {
	protected int a;
}