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
Warnings cleanup
[mcs.git]
/
tests
/
test-519.cs
blob
1c78dbebe6061860f844837208656a7053453b95
1
class
Foo
{
2
static int
Main
()
3
{
4
try
{
5
f
();
6
return
1
;
7
}
catch
{
8
return
0
;
9
}
10
}
11
static void
f
()
12
{
13
try
{
14
goto
skip
;
15
}
catch
{
16
goto
skip
;
17
}
finally
{
18
throw new
System
.
Exception
();
19
}
20
skip
:
21
;
22
}
23
}