<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0139</ErrorName>
  <Examples>
    <string>// cs0139-2.cs : 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-3.cs: 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-4.cs: 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-5.cs: 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-6.cs: 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-7.cs: No enclosing loop out of which to break or continue
// Line: 9

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

</string>
    <string>// cs0139-7.cs: No enclosing loop out of which to break or continue
// Line: 9

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

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