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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs8139-3.cs
blob
247a0d1c30290930910fd73e47ae6460f0c65335
1
// CS8139: `D.M((int, int))': cannot change tuple element names when overriding inherited member `C.M((int, int))'
2
// Line: 13
3
4
class
C
5
{
6
public virtual void
M
((
int
,
int
)
arg
)
7
{
8
}
9
}
10
11
class
D
:
C
12
{
13
public override void
M
((
int
c
,
int
d
)
arg
)
14
{
15
}
16
}