[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-930.cs
blobdaf7b2a1aeb9d5e3f0e2c5f7c5b307f8a67741d8
1 using System;
3 class X
5 public static int Main ()
7 try {
8 Test1 ();
9 return 1;
10 } catch (ApplicationException) {
13 try {
14 Test2 ();
15 return 2;
16 } catch (ApplicationException) {
19 try {
20 Test3 ();
21 return 3;
22 } catch (ApplicationException) {
25 return 0;
28 static void Test1 ()
30 try
33 finally
35 throw new ApplicationException ();
39 static void Test2 ()
41 try
44 catch
47 finally
49 throw new ApplicationException ();
53 static void Test3 ()
55 try
57 throw new ApplicationException ();
59 finally