summaryrefslogtreecommitdiff
path: root/mcs/errors/cs7003-2.cs
blob: 3c45ebfcb14d39eade7924b43d70452281be7423 (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
{
	G<> field;
}