summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0687.cs
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");
	}
}