rust-clippy/tests/ui/manual_unwrap_or.rs
2020-10-18 01:18:59 +02:00

140 lines
2.7 KiB
Rust

// run-rustfix
#![allow(dead_code)]
fn option_unwrap_or() {
// int case
match Some(1) {
Some(i) => i,
None => 42,
};
// int case reversed
match Some(1) {
None => 42,
Some(i) => i,
};
// richer none expr
match Some(1) {
Some(i) => i,
None => 1 + 42,
};
// multiline case
#[rustfmt::skip]
match Some(1) {
Some(i) => i,
None => {
42 + 42
+ 42 + 42 + 42
+ 42 + 42 + 42
}
};
// string case
match Some("Bob") {
Some(i) => i,
None => "Alice",
};
// don't lint
match Some(1) {
Some(i) => i + 2,
None => 42,
};
match Some(1) {
Some(i) => i,
None => return,
};
for j in 0..4 {
match Some(j) {
Some(i) => i,
None => continue,
};
match Some(j) {
Some(i) => i,
None => break,
};
}
// cases where the none arm isn't a constant expression
// are not linted due to potential ownership issues
// ownership issue example, don't lint
struct NonCopyable;
let mut option: Option<NonCopyable> = None;
match option {
Some(x) => x,
None => {
option = Some(NonCopyable);
// some more code ...
option.unwrap()
},
};
// ownership issue example, don't lint
let option: Option<&str> = None;
match option {
Some(s) => s,
None => &format!("{} {}!", "hello", "world"),
};
}
fn result_unwrap_or() {
// int case
match Ok(1) as Result<i32, &str> {
Ok(i) => i,
Err(_) => 42,
};
// int case reversed
match Ok(1) as Result<i32, &str> {
Err(_) => 42,
Ok(i) => i,
};
// richer none expr
match Ok(1) as Result<i32, &str> {
Ok(i) => i,
Err(_) => 1 + 42,
};
// multiline case
#[rustfmt::skip]
match Ok(1) as Result<i32, &str> {
Ok(i) => i,
Err(_) => {
42 + 42
+ 42 + 42 + 42
+ 42 + 42 + 42
}
};
// string case
match Ok("Bob") as Result<&str, &str> {
Ok(i) => i,
Err(_) => "Alice",
};
// don't lint
match Ok(1) as Result<i32, &str> {
Ok(i) => i + 2,
Err(_) => 42,
};
match Ok(1) as Result<i32, &str> {
Ok(i) => i,
Err(_) => return,
};
for j in 0..4 {
match Ok(j) as Result<i32, &str> {
Ok(i) => i,
Err(_) => continue,
};
match Ok(j) as Result<i32, &str> {
Ok(i) => i,
Err(_) => break,
};
}
}
fn main() {}