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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs8139-2.cs
blob
93ff00563f7bf83a45ef40f783e764b79cfbaaa2
1
// CS8139: `D.M()': cannot change return type tuple element names when overriding inherited member `C.M()'
2
// Line: 14
3
4
class
C
5
{
6
public virtual
(
int
a
,
int
b
)
M
()
7
{
8
throw null
;
9
}
10
}
11
12
class
D
:
C
13
{
14
public override
(
int
,
int
)
M
()
15
{
16
throw null
;
17
}
18
}