Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs4019.cs
1 // CS4019: The CallerMemberName attribute cannot be applied because there is no standard conversion from `string' to `int'
2 // Line: 8
3
4 using System.Runtime.CompilerServices;
5
6 class C
7 {
8         public void Trace([CallerMemberName] int member = 0)
9         {
10         }
11 }