<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1523</ErrorName>
  <Examples>
    <string>// cs1523.cs: The keyword case or default must precede code in switch block
// Line: 11

class X {

	static void Main ()
	{
		int i = 0;

		switch (i){
			i = 4;
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>