<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <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>
  </Examples>
</ErrorDocumentation>