<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0809</ErrorName>
  <Examples>
    <string>// CS0809: Obsolete member `B.Property' overrides non-obsolete member `A.Property'
// Line: 17
// Compiler options: -warnaserror -warn:4

using System;

class A
{
	public virtual int Property {
		set { }
	}
}

class B : A
{
	[Obsolete ("TEST")]
	public override int Property {
		set { }
	}
}</string>
  </Examples>
</ErrorDocumentation>