[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0163-2.cs
blob945ae8ad09448352fb614e4c7142cf7fd53c6d85
1 // CS0163: Control cannot fall through from one case label `case 1:' to another
2 // Line: 9
4 public class Program
6 public static void Main ()
8 switch (1) {
9 case 1: {}
10 default: {}