mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
23 lines
361 B
Rust
23 lines
361 B
Rust
#![warn(clippy::if_let_some_result)]
|
|
|
|
fn str_to_int(x: &str) -> i32 {
|
|
if let Some(y) = x.parse().ok() {
|
|
y
|
|
} else {
|
|
0
|
|
}
|
|
}
|
|
|
|
fn str_to_int_ok(x: &str) -> i32 {
|
|
if let Ok(y) = x.parse() {
|
|
y
|
|
} else {
|
|
0
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let y = str_to_int("1");
|
|
let z = str_to_int_ok("2");
|
|
println!("{}{}", y, z);
|
|
}
|