repo.or.cz
/
mono.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git]
/
mono
/
tests
/
bug-59286.cs
blob
c040191ef646197fa57b8025c268326814b661a7
1
using
System
;
2
3
class
A
:
T
{}
4
class
T
{
5
static int
Main
()
6
{
7
object
o
= (
T
[][]) (
object
) (
new
A
[][] {});
8
return
o
.
GetHashCode
() -
o
.
GetHashCode
();
9
}
10
}
11