cleol
[mcs.git] / tests / test-574.cs
blob6884ebeddadb586e832f7f7875e4e7f274dc7232
1 using System;
2 using System.Threading;
4 enum A {
5 Hello,
6 Bye
9 class X {
11 static int Main () {
12 try {
13 switch (0) {
14 default:
15 throw new Exception("FOO");
16 break;
18 } catch (Exception) {
19 return 0;
22 return 1;