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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs8139-4.cs
blob
8272a5d47068352710f693da8eab7b7f5e8b69ea
1
// CS8139: `D.Prop': cannot change return type tuple element names when overriding inherited member `C.Prop'
2
// Line: 14
3
4
class
C
5
{
6
public virtual
(
int
a
,
int
b
)
Prop
{
7
get
{
8
throw null
;
9
}
10
}
11
}
12
13
class
D
:
C
14
{
15
public override
(
int
c
,
int
d
)
Prop
{
16
get
{
17
throw null
;
18
}
19
}
20
}