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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0157-4.cs
blob
de73caca760425382da3982c58d7929d97b4c969
1
// cs0157-4.cs: Control cannot leave the body of a finally clause
2
// Line: 11
3
4
class
T
{
5
static void
Main
()
6
{
7
while
(
true
) {
8
try
{
9
System
.
Console
.
WriteLine
(
"trying"
);
10
}
finally
{
11
goto
foo
;
12
}
13
foo
:
14
;
15
}
16
}
17
}