[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-ex-filter-03.cs
blob72984067304d0146e7d98717d10347de830b3985
1 using System;
3 class X
5 public static int Main ()
7 try {
8 bool x = true;
9 try {
10 throw new ApplicationException ();
11 } catch (NullReferenceException) when (x) {
12 throw;
15 return 1;
16 } catch (ApplicationException) {
17 Console.WriteLine ("ok");
18 return 0;