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

class A<T> where T : X
{
	public class X {}
}