Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0163-2.cs
1 // CS0163: Control cannot fall through from one case label `case 1:' to another
2 // Line: 9
3
4 public class Program
5 {
6         public static void Main ()
7         {
8                 switch (1) {
9                         case 1: {}
10                         default: {}
11                 }
12         }
13 }