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

12 lines
145 B
Rust
Vendored

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