nvim-treesitter/tests/indent/rust/match.rs

12 lines
145 B
Rust
Raw Normal View History

2021-04-18 22:38:25 +02:00
fn foo(x: i32) -> i32 {
match x {
0 => 1,
1 => {
2
},
2 | 3 => {
4
}
}
}