rust-clippy/tests/ui/unwrap_or.fixed
2023-08-11 14:02:28 +00:00

10 lines
306 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();
}
fn new_lines() {
let s = Some(String::from("test string")).unwrap_or_else(|| "Fail".to_string()).len();
}