[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1066-4.cs
1 // CS1066: The default value specified for optional parameter `i' will never be used
2 // Line: 7
3 // Compiler options: -warnaserror
4
5 class C
6 {
7         public static implicit operator C (int i = 8)
8         {
9                 return null;
10         }
11 }