[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0466.cs
1 // CS0466:  `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier
2 // Line: 10
3
4 interface I
5 {
6         void M(int[] values);
7 }
8 class Base : I
9 {
10         void I.M(params int[] values) {}
11 }