* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / gcs0308-4.cs
1 // CS0308: The non-generic type `Stack' cannot be used with the type arguments
2 // Line: 9
3
4 class Stack
5 { }
6
7 class X
8 {
9         Stack<float> stack;
10 }