summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0307-3.cs
blob: 137528f1e9cd6842f2ae979108a83742cd88a0c6 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0307: The variable `a' cannot be used with type arguments
// Line: 9

public class Tests
{
	public static void Test (int a)
	{
		a<int> ();
	}
}