Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-836.cs
1 using System;
2
3 public class C
4 {
5         public static int Main ()
6         {
7                 try {
8                         throw new ArgumentException ();
9                 } catch (ArgumentException) {
10                         return 0;
11                 } catch {
12                         return 1;
13                 }
14         }
15 }