rust/tests/ui/unwrap_or.fixed
2025-04-22 18:24:43 +02:00

12 lines
335 B
Rust

#![warn(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();
//~^ or_fun_call
}
fn new_lines() {
let s = Some(String::from("test string")).unwrap_or_else(|| "Fail".to_string()).len();
//~^ or_fun_call
}