[System.Windows.Forms] Disable failing test
[mono-project.git] / mcs / tests / test-505.cs
blob0ce8deccba553eeaa293271146ef39cdd75d9c2a
1 class T {
2 public static int i;
3 static int f ()
5 try {
6 } finally {
7 throw new System.Exception ("...");
10 public static void Main ()
12 try {
13 i = f ();
14 } catch {
15 return;
17 throw new System.Exception ("error");