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

cs0432.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a9a4239bdb412033431dece3b555bdb8aa3816d (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0432: Alias `fool' not found
// Line: 9

using foo = System;

class X {
	static void Main ()
	{
		fool::Console.WriteLine ("hello");
	}
}