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

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

class fool { }

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