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] Add more Math intrinsics (#19174)
[mono-project.git]
/
mcs
/
errors
/
cs8152.cs
blob
45546ad9d9af750e4851f17cbfbf0256745b1aea
1
// CS8152: `C' does not implement interface member `IA.Foo()' and the best implementing candidate `C.Foo()' return type `void' does not return by reference
2
// Line: 11
3
4
interface
IA
5
{
6
ref char
Foo
();
7
}
8
9
public class
C
:
IA
10
{
11
public void
Foo
()
12
{
13
}
14
}