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
monotouch uses the real HttpWebRequest
[mcs.git]
/
tests
/
test-712.cs
blob
5f422e6f45bfd630e5c33dc53faacbac11fb8cec
1
using
System
;
2
3
interface
IFoo
4
{
5
bool
Equals
(
object
o
);
6
}
7
8
class
Hello
:
IFoo
9
{
10
static void
Main
()
11
{
12
IFoo f
=
new
Hello
();
13
int
i
=
f
.
GetHashCode
();
14
bool
b
=
f
.
Equals
(
f
);
15
}
16
}