mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-17 22:46:50 +00:00
readded files
This commit is contained in:
parent
c18dc13f6e
commit
72a653d8d4
27
tests/compile-fail/ok_if_let.rs
Normal file
27
tests/compile-fail/ok_if_let.rs
Normal file
@ -0,0 +1,27 @@
|
||||
#![feature(plugin)]
|
||||
#![plugin(clippy)]
|
||||
|
||||
#![deny(if_let_some_result)]
|
||||
|
||||
fn str_to_int(x: &str) -> i32 {
|
||||
if let Some(y) = x.parse().ok() {
|
||||
//~^ERROR Matching on `Some` with `ok()` is redundant
|
||||
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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user