1 2 3 4 5 6 7 8 9 10 11
// CS0165: Use of unassigned local variable `t' // Line: 8 public class Foo<T> { public static bool Test () { T t; return t is int; } }