aboutsummaryrefslogtreecommitdiff
path: root/tools/odinfmt/tests/allman/switch.odin
blob: b68f9bc7d51ce03aeccd99563e5c256cb4a9b5ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package allman

main :: proc() {
  num := 1

  switch num
  {
          case 0:
          case 1:
  }

  switch num  {
          case 0:
          case 1:
  }

  
}