1 2 3 4 5 6 7 8 9 10
// CS0308: The non-generic type `Stack' cannot be used with the type arguments // Line: 9 class Stack { } class X { Stack<float> stack; }