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

cs4021.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3f5d48011fd1be2bd66e38e434d9ddafe651f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS4021: The CallerFilePath attribute can only be applied to parameters with default value
// Line: 8

using System.Runtime.CompilerServices;

class C
{
	public void Trace([CallerFilePath] string member)
	{
	}
}