[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0305-3.cs
1 // CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
2 // Line: 9
3
4 class Stack<T>
5 { }
6
7 class X
8 {
9         Stack stack;
10 }