<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0153</ErrorName>
  <Examples>
    <string>// CS0153: A goto case is only valid inside a switch statement
// Line: 7

class X {
	void Main ()
	{
		goto case 5;
	}
}
</string>
    <string>// CS0153: A goto case is only valid inside a switch statement
// Line: 7

class X {
	void Main ()
	{
		goto default;
	}
}
</string>
  </Examples>
</ErrorDocumentation>