Merge pull request #2593 from ludovic-henry/coop-fix-native-to-managed
[mono.git] / mono / tests / exception13.cs
1 using System;
2
3 public class Ex {
4
5         public static int Main () {
6
7                 try {
8                         throw null;
9                 } catch {
10                         return 0;
11                 }
12                 return 1;
13         }
14 }
15
16