Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0165-17.cs
1 // CS0165: Use of unassigned local variable `t'
2 // Line: 8
3
4 public class Foo<T>
5 {
6         public static bool Test ()
7         {
8                 T t;
9                 return t is int;
10         }
11 }