summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0466.cs
blob: a1f3dfbb7552837c9c97fdf184864edc72322563 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0466:  `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier
// Line: 10

interface I
{
	void M(int[] values);
}
class Base : I
{
	void I.M(params int[] values) {}
}