[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-807.cs
blobb411bfc29288c6e46389a3bc55ef318870493f8d
1 using System;
3 class AException : Exception
7 class Program
9 public static int Main ()
11 try {
12 throw new AException ();
13 } catch (AException e1) {
14 Console.WriteLine ("a");
15 try {
16 } catch (Exception) {
19 return 0;
20 } catch (Exception e) {
21 Console.WriteLine ("e");
24 return 1;