[w32file] Remove dead code
[mono.git] / mcs / errors / cs4020.cs
1 // CS4020: The CallerLineNumber 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([CallerLineNumber] int member)
9         {
10         }
11 }