It is now possible to select the font, size or style with the
[mono.git] / mcs / errors / cs0628.cs
1 // cs0628.cs: `D.a': new protected member declared in sealed class
2 // Line: 6
3 // Compiler options: -warnaserror -warn:4
4
5 sealed class D {
6         protected int a;
7 }