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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-712.cs
blob
dba30e2ac1f5cacc297d563aeec8bdf433483596
1
using
System
;
2
3
interface
IFoo
4
{
5
bool
Equals
(
object
o
);
6
}
7
8
class
Hello
:
IFoo
9
{
10
public static void
Main
()
11
{
12
IFoo f
=
new
Hello
();
13
int
i
=
f
.
GetHashCode
();
14
bool
b
=
f
.
Equals
(
f
);
15
}
16
}