summaryrefslogtreecommitdiff
path: root/mcs/errors/cs4018.cs
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)
	{
	}
}