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

class Program
{
	static NamingContext<int> Lookup ()
	{
		return null;
	}
}

class NamingContext
{
}