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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0157-5.cs
blob
009ace697d8095e2e2adc69be333e9f778c405ec
1
// cs0157-5.cs: Control cannot leave the body of a finally clause
2
// Line: 12
3
4
class
T
{
5
static void
Main
()
6
{
7
while
(
true
) {
8
try
{
9
System
.
Console
.
WriteLine
(
"trying"
);
10
}
finally
{
11
try
{
12
break
;
13
}
14
catch
{}
15
}
16
}
17
}
18
}