<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8160</ErrorName>
  <Examples>
    <string>// CS8160: A readonly field cannot be returned by reference
// Line: 10

class X
{
	readonly int f = 0;

	ref int Test ()
	{
		return ref f;
	}
}</string>
  </Examples>
</ErrorDocumentation>