<?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>CS0159</ErrorName>
  <Examples>
    <string>// CS0159: The label `case 20:' could not be found within the scope of the goto statement
// Line: 13

class y {
	enum X { A = 1, B = 1, C = 1 }

	static void Main ()
	{
		int x = 1;

		switch (x){
			case 1: break;
			case 2: goto case 20;
		}
	}
}
		
</string>
    <string>// CS0159: The label `case null:' could not be found within the scope of the goto statement
// Line: 1

class y {
	static void Main ()
	{
		string x = null;

		switch (x){
			case "": goto case null;
		}
	}
}
		
</string>
    <string>// CS0159: The label `skip:' could not be found within the scope of the goto statement
// Line: 9

class Foo {
	static void Main ()
	{
		try {}
		finally {
			goto skip;
		}
	}
}

</string>
    <string>// CS0159: The label `a:' could not be found within the scope of the goto statement
// Line: 8

class Foo {
	static void Main ()
	{
		int i = 9;
		goto a;
		if (i == 9) {
		a:
			throw new System.Exception ("huh?");
		}
	}
}
</string>
    <string>// CS0159: The label `a:' could not be found within the scope of the goto statement
// Line: 9

class Foo {
	static void Main ()
	{
		int i = 9;
		goto a;
		while (i != 9) {
		a:
			throw new System.Exception ("huh?");
		}
	}
}
</string>
    <string>// CS0159: The label `a:' could not be found within the scope of the goto statement
// Line: 9

class Foo {
	static void Main ()
	{
		int i = 9;
		goto a;
		do {
		a:
			throw new System.Exception ("huh?");
		} while (i != 9);
	}
}
</string>
    <string>// CS0159: The label `default:' could not be found within the scope of the goto statement
// Line: 10

class X {

	static int m (int n)
	{
		switch (n){
		case 0:
			goto default;

		case 1:
			return 1;
		}

		return 10;
	}
	
	static void Main ()
	{
		m (1);
	}
}
</string>
  </Examples>
</ErrorDocumentation>