eol
[mcs.git] / tests / test-54.cs
blob0eb5b69220467659af6badd836ef22f17077045e
1 //
2 // This test does not pass peverify because we dont return properly
3 // from catch blocks
4 //
5 using System;
7 class X {
9 bool v ()
11 try {
12 throw new Exception ();
13 } catch {
14 return false;
16 return true;
19 static int Main ()
21 return 0;