<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8148</ErrorName>
  <Examples>
    <string>// CS8148: `B.Foo': must return by reference to match overridden member `A.Foo'
// Line: 11

public abstract class A
{
	public abstract ref int Foo { get; }
}

public class B : A
{
	public override long Foo {
		get {
			throw null;
		}
	}
}</string>
    <string>// CS8148: `B.Foo()': must not return by reference to match overridden member `A.Foo()'
// Line: 11

public abstract class A
{
	public abstract int Foo ();
}

public class B : A
{
	public override ref int Foo ()
	{

	}
}</string>
  </Examples>
</ErrorDocumentation>