summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-27.cs
blob: 9a0afb5a97a866603f9680369d7c5680fd2679fb (plain)
1
2
3
4
5
6
7
// CS0246: The type or namespace name `NotExist' could not be found. Are you missing an assembly reference?
// Line: 6

class X
{
	NotExist<float> foo;
}