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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
ltest-19.cs
blob
8b5601458441309d2815015c28c8086e12c5050d
1
using
System
;
2
3
public class
Crasher
4
{
5
public static void
Crash
()
6
{
7
double
[]
array
=
new double
[
1
];
8
Do
(() => {
9
int
col
=
1
;
10
array
[
col
] +=
array
[
col
];
11
});
12
}
13
14
static void
Do
(
Action action
)
15
{
16
}
17
18
public static void
Main
()
19
{
20
}
21
}