Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mcs / tests / test-285.cs
1 class T {
2         public static int Main ()
3         {
4                 switch (1) {
5                 case 1:
6                         return 0;
7                 default:
8                         break;
9                 }
10         }
11 }