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
/
cs0738.cs
blob
a82effbc13b569f72e5784ff934ab150274e4782
1
// CS0738: `B' does not implement interface member `I.Test(int)' and the best implementing candidate `B.Test(int)' return type `int' does not match interface member return type `void'
2
// Line: 9
3
4
interface
I
5
{
6
void
Test
(
int
a
);
7
}
8
9
class
B
:
I
10
{
11
public int
Test
(
int
a
)
12
{
13
return
a
;
14
}
15
}