repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0737-2.cs
blob
408b09dee0fd78ec7894f668f32074ff8036093b
1
// CS0737: `MyTest' does not implement interface member `System.ICloneable.Clone()' and the best implementing candidate `MyTest.Clone()' in 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