2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0466.cs
blob1588c21ce2b51bb97408ff81137ba184d8fd8968
1 // cs0466.cs: `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier
2 // Line: 10
4 interface I
6 void M(int[] values);
8 class Base : I
10 void I.M(params int[] values) {}