repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
test-54.cs
blob
c9c5dfcbc345a238dc64dfc1c0a1c1bc04d92dd9
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
public static int
Main
()
20
{
21
return
0
;
22
}
23
}