<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0139</ErrorName>
  <Examples>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 10
public class Test
{
        public static void Foo (char c)
        {
                switch (char.GetUnicodeCategory (c)) {
                default:
                        if (c == 'a')
                                continue;
                        System.Console.WriteLine ();
                        break;
                }
        }
}

</string>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 8

class Foo {
	static void Main ()
	{
		try {
			break;
		} finally {
			throw new System.Exception ();
		}
	}
}
</string>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 9

class Foo {
	static void Main ()
	{
		try {
		} catch {
			break;
		} finally {
			throw new System.Exception ();
		}
	}
}
</string>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 8

class Foo {
	static void Main ()
	{
		try {
			continue;
		} finally {
			throw new System.Exception ();
		}
	}
}
</string>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 9

class Foo {
	static void Main ()
	{
		try {
		} catch {
			continue;
		} finally {
			throw new System.Exception ();
		}
	}
}
</string>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 9

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

</string>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 9

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

</string>
    <string>// CS0139: No enclosing loop out of which to break or continue
// Line: 6
class X {
	void A ()
	{
		continue;
	}
}
</string>
  </Examples>
</ErrorDocumentation>