<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8156</ErrorName>
  <Examples>
    <string>// CS8156: An expression cannot be used in this context because it may not be returned by reference
// Line: 8

class X
{
	int Prop {
		get {
			return 1;
		}
	}

	ref int Test ()
	{
		return ref Prop;
	}
}</string>
    <string>// CS8156: An expression cannot be used in this context because it may not be returned by reference
// Line: 8

class Test
{
	ref int Foo ()
	{
		return ref 2;
	}
}</string>
  </Examples>
</ErrorDocumentation>