Files
rust/tests/ui/unwrap_or.rs
2025-02-15 13:38:42 +01:00

13 lines
332 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("Fail".to_string()).len();
//~^ or_fun_call
}
fn new_lines() {
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
//~^ or_fun_call
}