[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0305-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 }