mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-29 10:50:06 +08:00
12 lines
145 B
Rust
Vendored
12 lines
145 B
Rust
Vendored
fn foo(x: i32) -> i32 {
|
|
match x {
|
|
0 => 1,
|
|
1 => {
|
|
2
|
|
},
|
|
2 | 3 => {
|
|
4
|
|
}
|
|
}
|
|
}
|