<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1632</ErrorName>
  <Examples>
    <string>// cs1632.cs: 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>