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
2009-12-12 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
tests
/
test-626.cs
blob
9293e2e0d0bb02a6ac06ce11251f8ed2e9481e4b
1
//
2
// fixed
3
//
4
using
System
;
5
6
class
X
{
7
8
void
A
()
9
{
10
}
11
12
static void
Main
()
13
{
14
int
loop
=
0
;
15
16
goto
a
;
17
b
:
18
loop
++;
19
return
;
20
a
:
21
Console
.
WriteLine
(
"Hello"
);
22
for
(;;){
23
goto
b
;
24
}
25
}
26
}