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-455.cs
blob
754f344ae969d8d147b90d8ed521fb01e9dc4961
1
struct
Foo
{
2
public int
x
;
3
public override int
GetHashCode
()
4
{
5
return base
.
GetHashCode
();
6
}
7
}
8
9
class
Test
{
10
static void
Main
()
11
{
12
Foo foo
=
new
Foo
();
13
System
.
Console
.
WriteLine
(
foo
.
GetHashCode
());
14
}
15
}