summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0308-5.cs
blob: 41106dfd7f20af638a51e106b70cbfcbb6621eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0308: The non-generic method `X.Foo()' cannot be used with the type arguments
// Line: 12

class X
{
	public void Foo ()
	{
	}
	
	void Test ()
	{
		Foo<int> ();
	}
}