repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0466.cs
blob
1588c21ce2b51bb97408ff81137ba184d8fd8968
1
// cs0466.cs: `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
}