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
cosmetic
[mcs.git]
/
tests
/
test-683.cs
blob
351e82cd7babee2dd153d60b87c968a9a0f1277a
1
using
System
;
2
using
SizeType
=
System
.
UInt64
;
3
4
public class
broken_cast
5
{
6
public static int
Main
()
7
{
8
SizeType m
=
1
;
9
SizeType i
=
1
;
10
SizeType
[]
n
=
new
SizeType
[
2
]
{ 7, 8 }
;
11
m
=
m
*
n
[
i
];
12
return
0
;
13
}
14
}