[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0305-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()