Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-ex-filter-01.cs
1 using System;
2
3 class X
4 {
5         public static int Main ()
6         {
7                 int x = 4;
8                 try {
9                         throw null;
10                 } catch (NullReferenceException) when (x > 0) {
11                         Console.WriteLine ("catch");
12                         return 0;
13                 }
14         }
15 }