2bdeeacda6e3c003325b6dfc2bf93a67d23f3af5
[mono.git] / mcs / errors / gcs0305-2.cs
1 // CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
2 // Line: 11
3
4 class Stack<T> {
5 }
6
7 class Test {
8 }
9
10 class T {
11         Stack<Test,Test> a;
12
13         static void Main()
14         {
15         }
16 }