Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0307-4.cs
1 // CS0307: The variable `d' cannot be used with type arguments
2 // Line: 9
3
4 public class Tests
5 {
6         public static void Main ()
7         {
8                 var d = 0;
9                 d<int> ();
10         }
11 }