2009-09-07 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / tests / test-539.cs
1 // Compiler options: -warnaserror -warn:4
2
3 using System;
4
5 public class Test
6 {
7         static void Main ()
8         {
9                 try {
10                 } catch (Exception) {
11                 } catch {
12                 }
13         }
14 }