[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs4021.cs
1 // CS4021: The CallerFilePath attribute can only be applied to parameters with default value
2 // Line: 8
3
4 using System.Runtime.CompilerServices;
5
6 class C
7 {
8         public void Trace([CallerFilePath] string member)
9         {
10         }
11 }