blob: e550484b5d9f0ecd4b51188e29270b496888c797 [file] [log] [blame]
#![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
}