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