Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0400.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
	}
}