2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-505.cs
blobb6fc7444e781a81c9c6f810ec9146396e7fe0ec6
1 class T {
2 public static int i;
3 static int f ()
5 try {
6 } finally {
7 throw new System.Exception ("...");
10 static void Main ()
12 try {
13 i = f ();
14 } catch {
15 return;
17 throw new System.Exception ("error");