Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / test-574.cs
1 using System;
2 using System.Threading;
3
4 enum A {
5   Hello,
6   Bye
7 }
8
9 class X {
10
11         static int Main () {
12                 try {
13                         switch (0) {
14                         default:
15                           throw new Exception("FOO");
16                           break;
17                         }
18                 } catch (Exception) {
19                         return 0;
20                 }
21                 
22                 return 1;
23         }
24 }
25