nvim-treesitter/lua/tests/indent/rust/match.rs
2021-04-23 21:21:38 +02:00

11 lines
145 B
Rust

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