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

cs8083.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26b90c846a95fcba3ba5bfcc295f690d0a0990e2 (plain)
1
2
3
4
5
6
7
8
9
10
// CS8083: An alias-qualified name is not an expression
// Line: 8

class C
{
	static void Main ()
	{
		string s = nameof (global::C);
	}
}