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

cs8082.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70afa6b7e79857db605b56a9d22e7ee6152efe1f (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS8082: An argument to nameof operator cannot include sub-expression
// Line: 9

class C
{
	void Foo ()
	{
		object o = null;
		var s = nameof (o.ToString ().Equals);
	}
}