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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0737-2.cs
blob
ccb60fb66c0383797731edb144272bab3d1369ff
1
// CS0737: `MyTest' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' is not public
2
// Line: 6
3
4
using
System
;
5
6
public class
MyTest
:
ICloneable
7
{
8
object
Clone
()
9
{
10
return
MemberwiseClone
();
11
}
12
}
13