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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0157-3.cs
blob
a8b183105ce2969b37dbd8e80b4ef4318c0f6279
1
// cs0157-3.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
continue
;
12
}
13
}
14
}
15
}