Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs7003-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}