Merge pull request #946 from akoeplinger/fix-mono-parallel
[mono.git] / mcs / tests / test-ex-filter-03.cs
1 using System;
2
3 class X
4 {
5         public static int Main ()
6         {
7                 try {
8                         bool x = true;
9                         try {
10                                 throw new ApplicationException ();
11                         } catch (NullReferenceException) if (x) {
12                                 throw;
13                         }
14
15                         return 1;
16                 } catch (ApplicationException) {
17                         Console.WriteLine ("ok");
18                         return 0;
19                 }
20         }
21 }