summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0308-4.cs
blob: e96039ab91486dc90a4a9ef6b908aac6090e690c (plain)
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;
}