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-517.cs
blob
d734691b526fecbf2ba4e53b10de548de74a142a
1
// Compiler options: -warnaserror -warn:2
2
3
class
Test
{
4
public static int
Main
()
5
{
6
int
i
=
1
;
7
goto
lbl
;
8
lbl
:
9
i
=
0
;
10
return
i
;
11
}
12
}