<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0157</ErrorName>
  <Examples>
    <string>// CS0157: Control cannot leave the body of a finally clause
// Line: 11

class T {
	static void Main ()
	{
		while (true) {
			try {
				System.Console.WriteLine ("trying");
			} finally {
				goto foo;
			}
		foo :
			;
		}
	}
}</string>
    <string>// CS0157: Control cannot leave the body of a finally clause
// Line: 9

class X {
	void A ()
	{
		try {
		} finally {
			return;
		}
	}
}
</string>
    <string>// CS0157: Control cannot leave the body of a finally clause
// Line: 12

class T {
	static void Main ()
	{
		while (true) { 
			try {
				System.Console.WriteLine ("trying");
			} finally {
				try {
				    break;
				}
				catch {}
			}
		}
	}
}</string>
    <string>// CS0157: Control cannot leave the body of a finally clause
// Line: 11

class T {
	static void Main ()
	{
		while (true) {
			try {
				System.Console.WriteLine ("trying");
			} finally {
				continue;
			}
		}
	}
}</string>
    <string>// CS0157: Control cannot leave the body of a finally clause
// Line: 11

class T {
	static void Main ()
	{
		while (true) { 
			try {
				System.Console.WriteLine ("trying");
			} finally {
				break;
			}
		}
	}
}</string>
    <string>// CS0157: Control cannot leave the body of a finally clause
// Line: 10

class Foo {
	static void Main () { int i; foo (out i); }
	static void foo (out int i)
	{
		try {}
		finally {
			return;
		}
	}
}
</string>
  </Examples>
</ErrorDocumentation>