<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1605</ErrorName>
  <Examples>
    <string>// CS1605: Cannot pass `this' as a ref or out argument because it is read-only
// Line: 13

class X
{
	void Test (out X x)
	{
		x = null;
	}
	
	void Run ()
	{
		Test (out this);
	}
}
</string>
  </Examples>
</ErrorDocumentation>