[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs7082.cs
1 // CS7082: The CallerFilePathAttribute applied to parameter `o' will have no effect. It is overridden by the CallerLineNumberAttribute
2 // Line: 9
3 // Compiler options: -warnaserror
4
5 using System.Runtime.CompilerServices;
6
7 class D
8 {
9         void Foo ([CallerFilePath, CallerLineNumber] object o = null)
10         {
11         }
12 }