w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0165-17.cs
blobd16156435bf92d295de8616770196fd68b9758a4
1 // CS0165: Use of unassigned local variable `t'
2 // Line: 8
4 public class Foo<T>
6 public static bool Test ()
8 T t;
9 return t is int;