<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0469</ErrorName>
  <Examples>
    <string>// CS0469: The `goto case' value is not implicitly convertible to type `char'
// Line: 16
// Compiler options: -warnaserror -warn:2

class Test
{
	static void Main()
	{
		char c = 'c';
		switch (c)
		{
			case 'A':
				break;

			case 'a': 
				goto case 65;
		}
	}
}</string>
  </Examples>
</ErrorDocumentation>