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
/
test-257.cs
blob
be48f7d2b40a35ba1f055c7703a41473cc7844ed
1
class
X
{
2
static void
Main
()
3
{
4
int
a
;
5
6
call
(
out
a
);
7
}
8
9
static void
call
(
out int
a
)
10
{
11
while
(
true
){
12
try
{
13
a
=
1
;
14
return
;
15
}
catch
{
16
}
17
}
18
}
19
}