summaryrefslogtreecommitdiff
path: root/mcs/tests/test-519.cs
blob: 35ca796e054812cb65e8e784fbb6ac37c38c3486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Foo {
	public static int Main ()
	{
		try {
			f ();
			return 1;
		} catch {
			return 0;
		}
	}
	static void f ()
	{
		try {
			goto skip;
		} catch {
			goto skip;
		} finally {
			throw new System.Exception ();
		}
	skip:
		;
	}
}