2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0305-2.cs
blob2bdeeacda6e3c003325b6dfc2bf93a67d23f3af5
1 // CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
2 // Line: 11
4 class Stack<T> {
7 class Test {
10 class T {
11 Stack<Test,Test> a;
13 static void Main()