summaryrefslogtreecommitdiff
path: root/mcs/errors/cs7003-3.cs
blob: a5f3c2fb38281194bcad4e712913385fef796466 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS7003: Unbound generic name is not valid in this context
// Line: 10

class G<T>
{
}

class C
{
	const string f = nameof (G<>);
}