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-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-54.cs
blob
0eb5b69220467659af6badd836ef22f17077045e
1
//
2
// This test does not pass peverify because we dont return properly
3
// from catch blocks
4
//
5
using
System
;
6
7
class
X
{
8
9
bool
v
()
10
{
11
try
{
12
throw new
Exception
();
13
}
catch
{
14
return false
;
15
}
16
return true
;
17
}
18
19
static int
Main
()
20
{
21
return
0
;
22
}
23
}