rust-clippy/tests/ui/unwrap_or.rs

11 lines
290 B
Rust
Raw Normal View History

#![warn(clippy::all, clippy::or_fun_call)]
2023-05-31 17:47:10 +00:00
#![allow(clippy::unnecessary_literal_unwrap)]
fn main() {
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
}
2018-02-20 17:37:30 +00:00
fn new_lines() {
2018-12-09 22:26:16 +00:00
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
2018-02-20 17:37:30 +00:00
}