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
add test to confirm behavior of Control.SetVisibleCore, and remove some redundant...
[mcs.git]
/
tests
/
test-518.cs
blob
d4e4841de7a9e615562b6cbcfe42d8c50db66189
1
class
Foo
{
2
static int
Main
()
3
{
4
int
ret
=
1
;
5
try
{
6
goto
done
;
7
}
finally
{
8
ret
=
0
;
9
}
10
done
:
11
return
ret
;
12
}
13
}
14