2023-07-27 06:40:22 -05:00
|
|
|
#![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();
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: use of `unwrap_or` followed by a function call
|
|
|
|
//~| NOTE: `-D clippy::or-fun-call` implied by `-D warnings`
|
2023-07-27 06:40:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn new_lines() {
|
|
|
|
let s = Some(String::from("test string")).unwrap_or_else(|| "Fail".to_string()).len();
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: use of `unwrap_or` followed by a function call
|
2023-07-27 06:40:22 -05:00
|
|
|
}
|