Merge pull request #1079 from esdrubal/webclient_cancel
[mono.git] / mcs / errors / cs1644-35.cs
1 // CS1644: Feature `exception filter' cannot be used because it is not part of the C# 5.0 language specification
2 // Line: 14
3 // Compiler options: -langversion:5
4
5 using System;
6
7 class X
8 {
9         public static void Main ()
10         {
11                 int x = 4;
12                 try {
13                         throw null;
14                 } catch (Exception) if (x > 0) {
15                 }
16         }
17 }