TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs1644-35.cs
blob3b9a3b0917341ae7b8020f318dac36f0203c53de
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
5 using System;
7 class X
9 public static void Main ()
11 int x = 4;
12 try {
13 throw null;
14 } catch (Exception) when (x > 0) {