Update
[mono.git] / mcs / tests / verify-4.cs
1 using System;
2 using System.Threading;
3
4 enum A {
5   Hello,
6   Bye
7 }
8
9 class X {
10
11         static void Main () {
12                 switch (0) {
13                 default:
14                   throw new Exception("FOO");
15                   break;
16                 }
17         }
18 }
19