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-515.cs
blob
ce0178d1b7cf51af68b133e17a882a3148fd47e2
1
class
X
{
2
static void
Main
()
3
{
4
int
i
=
0
;
5
goto
a
;
6
b
:
7
if
(++
i
>
1
)
8
throw new
System
.
Exception
(
"infloop!!!"
);
9
return
;
10
a
:
11
goto
b
;
12
}
13
}