[interp] Remove unreachable code (#12411)
[mono-project.git] / mono / tests / exception19.cs
blob2e23c59d049836f3e06cc9a743efb4ffd0c9d800
1 using System;
3 public class TestFinallyException {
5 public static int Main (string[] args)
7 int ret = -1;
9 try {
10 } finally {
11 try {
12 try {
13 } finally {
14 throw new Exception ();
16 ret = 1;
17 } catch (Exception) {
18 ret = 0;
22 return ret;