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

cs4018.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47d216f2d8cffce1f00b57e41a5abf894701323f (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS4018: The CallerFilePath attribute cannot be applied because there is no standard conversion from `string' to `int'
// Line: 8

using System.Runtime.CompilerServices;

class C
{
	public void Trace([CallerFilePath] int member = 0)
	{
	}
}