2010-04-19 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / tests / exception7.cs
bloba730dbbed56838221839da6cb2d81afdad3844d4
1 using System;
3 public class Test {
4 public static int Main() {
5 try {
6 Console.WriteLine("In try");
7 throw new Exception();
8 //return(1);
10 catch (Exception e) {
11 Console.WriteLine("In catch");
12 return(0);
14 finally {
15 Console.WriteLine("In finally");
17 return 2;