a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
12 lines
243 B
C#
12 lines
243 B
C#
// 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)
|
|
{
|
|
}
|
|
}
|