1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 22:00:07 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/rust/match.rs
2022-04-14 12:01:23 +08:00

12 lines
145 B
Rust

fn foo(x: i32) -> i32 {
match x {
0 => 1,
1 => {
2
},
2 | 3 => {
4
}
}
}