blob: 3dd1995a1115a1628d9a22eeaad594aa01c499f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS4019: The CallerMemberName 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([CallerMemberName] int member = 0)
{
}
}
|