summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0139-4.cs
blob: e6beb6b0abb7f4ca132e580d0756851c0bb17594 (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 {
			break;
		} finally {
			throw new System.Exception ();
		}
	}
}