2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0305-3.cs
blob693c1919a0ffa1d37d2125f5be3dadfbe9b8e681
1 // CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
2 // Line: 9
4 class Stack<T>
5 { }
7 class X
9 Stack stack;