summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0139-6.cs
blob: 609a3f8abb25132a256543c9d9a87cfc650ff389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 ();
		}
	}
}