Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-297.cs
1 // Compiler options: -warnaserror -warn:4
2
3 using System;
4 using System.Runtime.CompilerServices;
5
6 [assembly: RuntimeCompatibility (WrapNonExceptionThrows=false)]
7
8 public class Test
9 {
10         public static void Main ()
11         {
12                 try {
13                 } catch (Exception) {
14                 } catch {
15                 }
16         }
17 }