<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0445</ErrorName>
  <Examples>
    <string>// CS0445: Cannot modify the result of an unboxing conversion
// Line: 10

struct S
{
	public int val;

	public void Do (object o) 
	{
		((S)o).val = 4;
	}
}

</string>
    <string>// CS0445: Cannot modify the result of an unboxing conversion
// Line: 10

struct S
{
	public int val { set {} }

	public void Do (object o) 
	{
		((S)o).val = 4;
	}
}

</string>
    <string>// CS0445: Cannot modify the result of an unboxing conversion
// Line: 8

struct S
{
	public void Do (object o)
	{
		((S) o)[1] = 4;
	}

	int this[int arg] { set { } }
}

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