2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0308-4.cs
blobe96039ab91486dc90a4a9ef6b908aac6090e690c
1 // CS0308: The non-generic type `Stack' cannot be used with the type arguments
2 // Line: 9
4 class Stack
5 { }
7 class X
9 Stack<float> stack;