28c32eb182c315389255c1fe47e96f38fddad924
[dotfiles/.git] / CheckDefaultCaseOrder.go
1 // Package pkg ...
2 package pkg
3
4 func fn(x int) {
5         switch x {
6         }
7         switch x {
8         case 1:
9         }
10
11         switch x {
12         case 1:
13         case 2:
14         case 3:
15         }
16
17         switch x {
18         default:
19         }
20
21         switch x {
22         default:
23         case 1:
24         }
25
26         switch x {
27         case 1:
28         default:
29         }
30
31         switch x {
32         case 1:
33         default: // want `default case should be first or last in switch statement`
34         case 2:
35         }
36 }