2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-519.cs
blob1c78dbebe6061860f844837208656a7053453b95
1 class Foo {
2 static int Main ()
4 try {
5 f ();
6 return 1;
7 } catch {
8 return 0;
11 static void f ()
13 try {
14 goto skip;
15 } catch {
16 goto skip;
17 } finally {
18 throw new System.Exception ();
20 skip: