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

cs0687.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 747801734d5a75f6c94da95ab6cae4afb7eefcf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0687: The namespace alias qualifier `::' cannot be used to invoke a method. Consider using `.' instead
// Line: 9

using foo = System.Console;

class X {
	static void Main ()
	{
		foo::WriteLine ("hello");
	}
}