Align libgc vcxproj with makefile.
[mono.git] / mono / tests / exception7.cs
1 using System;
2
3 public class Test {
4         public static int Main() {
5                 try {
6                         Console.WriteLine("In try");
7                         throw new Exception();
8                         //return(1);
9                 }
10                 catch (Exception e) {
11                         Console.WriteLine("In catch");
12                         return(0);
13                 }
14                 finally {
15                         Console.WriteLine("In finally");
16                 }
17                 return 2;
18         }
19 }
20