Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0466.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1588c21ce2b51bb97408ff81137ba184d8fd8968 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0466.cs:  `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) {}
}