[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-54.cs
blobc9c5dfcbc345a238dc64dfc1c0a1c1bc04d92dd9
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 public static int Main ()
21 return 0;