<?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>CS0840</ErrorName>
  <Examples>
    <string>// CS0840: `Test.Property.get' must have a body because it is not marked abstract or extern. The property can be automatically implemented when you define both accessors
// Line: 7


public abstract class Test
{
	public string Property { get; }
}
</string>
  </Examples>
</ErrorDocumentation>