<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1632</ErrorName>
  <Examples>
    <string>// CS1632: Control cannot leave the body of an anonymous method
// Line: 12

using System;

class X {
	delegate void T ();

	static void Main ()
	{
		T t = delegate {
			goto L;
		};

L:
		Console.WriteLine ("Hello");
		      
	}
}
	
		
</string>
    <string>// CS1632: Control cannot leave the body of an anonymous method
// Line: 12

using System;

class X
{
	public static void Main ()
	{
		while (true) {
			Action a = () =&gt; {
				break;
			};
		}
	}
}
</string>
    <string>// CS1632: Control cannot leave the body of an anonymous method
// Line: 14

using System;

class X
{
	public static void Main ()
	{
		int b = 0;
		switch (b) {
			case 1:
			Action a = () =&gt; {
				break;
			};
			
			break;
		}
	}
}
</string>
    <string>// CS1632: Control cannot leave the body of an anonymous method
// Line: 14

using System;

class X
{
	public static void Main ()
	{
		int b = 0;
		switch (b) {
		case 1:
			Action a = () =&gt; {
				goto case 2;
			};
			
			break;
		case 2:
			break;
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>