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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
tests
/
test-726.cs
blob
73cde6e7ce1839262970873fad74645656a65b3f
1
interface
IFoo
2
{
3
object
Clone
();
4
}
5
6
class
CS0102
:
IFoo
7
{
8
object
IFoo
.
Clone
()
9
{
10
return this
;
11
}
12
13
public class
Clone { }
14
15
public static void
Main
()
16
{
17
}
18
}