[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0466.cs
bloba1f3dfbb7552837c9c97fdf184864edc72322563
1 // CS0466: `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) {}