Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1644-51.cs
1 // CS1644: Feature `throw expression' cannot be used because it is not part of the C# 6.0 language specification
2 // Line: 5
3 // Compiler options: -langversion:6
4
5 static class Class
6 {
7         int Prop => throw null;
8 }