summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-17.cs
blob: d16156435bf92d295de8616770196fd68b9758a4 (plain)
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;
	}
}