blob: f27103e48dd3605f77c41784549dc163b614317c [file] [edit]
#![warn(clippy::or_fun_call)]
#![expect(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
}