diff options
| author | henbr <henrik.brandt@protonmail.com> | 2025-01-19 20:21:34 +0100 |
|---|---|---|
| committer | henbr <henrik.brandt@protonmail.com> | 2025-01-19 20:21:34 +0100 |
| commit | c611b1943a924267ef833f56305ae1e0fb1e6c2c (patch) | |
| tree | 0046598b08703b41f8154b2cc209023be83d31ed /tools | |
| parent | 92d17f328fa66b226cd3b995773830e16bae66ed (diff) | |
Fix Allman brace style test snapshot
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/odinfmt/tests/allman/.snapshots/switch.odin | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/odinfmt/tests/allman/.snapshots/switch.odin b/tools/odinfmt/tests/allman/.snapshots/switch.odin index 9eef4a9..10f6faf 100644 --- a/tools/odinfmt/tests/allman/.snapshots/switch.odin +++ b/tools/odinfmt/tests/allman/.snapshots/switch.odin @@ -1,14 +1,17 @@ package allman -main :: proc() { +main :: proc() +{ num := 1 - switch num { + switch num + { case 0: case 1: } - switch num { + switch num + { case 0: case 1: } |