summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0119.cs
blob: 156d53bfb0cf193b3462666baa1258cd99dbd75e (plain)
1
2
3
4
5
6
7
8
9
10
// CS0119: Expression denotes a `type parameter', where a `variable', `value' or `type' was expected
// Line: 8

class C
{
	static void Foo<T> ()
	{
		T.ToString ();
	}
}