Files
linux-packaging-mono/mcs/errors/cs0308-4.cs

11 lines
141 B
C#
Raw Normal View History

// CS0308: The non-generic type `Stack' cannot be used with the type arguments
// Line: 9
class Stack
{ }
class X
{
Stack<float> stack;
}