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

gcs0246-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a873787bd2452ea958adbe73d4f6bbdd667e69d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS8217: Generic type `Stack' takes 1 type parameters, but specified 2.
// line: 10
class Stack<T> {
}

class Test {
}

class T {
	Stack<Test,Test> a;

	static void Main()
	{
	}
}