summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0628.cs
blob: 315afa390bc09742583958b7869777a717d1a1e9 (plain)
1
2
3
4
5
6
7
// CS0628: `D.a': new protected member declared in sealed class
// Line: 6
// Compiler options: -warnaserror -warn:4

sealed class D {
	protected int a;
}