repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0466.cs
blob
a1f3dfbb7552837c9c97fdf184864edc72322563
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
}