2005-12-27 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs0246-7.cs
1 // gcs0246.cs: The type or namespace name `Stack`1' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 9
3
4 class Stack
5 { }
6
7 class X
8 {
9         Stack<float> stack;
10 }