rust-clippy/tests/ui/unwrap_or.fixed
Matthias Kaak 8c46c498d9 Improved wording of or_fun_call lint
Signed-off-by: Matthias Kaak <zvavybir@zvavybir.eu>
2024-10-10 08:05:41 +00:00

13 lines
475 B
Rust

#![warn(clippy::all, clippy::or_fun_call)]
#![allow(clippy::unnecessary_literal_unwrap)]
fn main() {
let s = Some(String::from("test string")).unwrap_or_else(|| "Fail".to_string()).len();
//~^ ERROR: function call inside of `unwrap_or`
//~| NOTE: `-D clippy::or-fun-call` implied by `-D warnings`
}
fn new_lines() {
let s = Some(String::from("test string")).unwrap_or_else(|| "Fail".to_string()).len();
//~^ ERROR: function call inside of `unwrap_or`
}