summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0400.cs
blob: e279709e45513be6a3807a04f5ecdf6614713870 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0400: The type or namespace name `N' could not be found in the global namespace. Are you missing an assembly reference?
// Line: 8

class C
{
	public static void Main()
	{
		global::N n = null;
	}
}