2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / gcs0305-2.cs
blob743d2fc1a2fc8dd111496ff40b000497e287e8ed
1 // CS8217: Generic type `Stack' takes 1 type parameters, but specified 2.
2 // Line: 10
3 class Stack<T> {
6 class Test {
9 class T {
10 Stack<Test,Test> a;
12 static void Main()