[mcs] C# 7 tuple (foundation only).
[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 }