<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0628</ErrorName>
  <Examples>
    <string>// cs0628-2.cs: `D.D()': new protected member declared in sealed class
// Line: 6
// Compiler options: -warnaserror -warn:4

sealed class D {
	protected D () {}
}
</string>
    <string>// cs0628-3.cs: `Test.print_argv(string[])': new protected member declared in sealed class
// Line: 8
// Compiler options: -warn:4 -warnaserror

using System;

internal sealed class Test {
	protected string print_argv (string[] argv)
	{
		if (argv == null)
			return "null";
		else
			return String.Join (":", argv);
	}

	static void Main () { }
}
</string>
    <string>// cs0628.cs: `D.a': new protected member declared in sealed class
// Line: 6
// Compiler options: -warnaserror -warn:4

sealed class D {
	protected int a;
}
</string>
  </Examples>
</ErrorDocumentation>