summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0081-2.cs
blob: f1299715af120099de83f94697afc321d10731b4 (plain)
1
2
3
4
5
6
7
8
9
// CS0081: Type parameter declaration must be an identifier not a type
// Line: 6

class D
{
	public void Foo<int>()
	{
	}
}