2022-11-21 19:34:47 +00:00
|
|
|
#![warn(clippy::all, clippy::or_fun_call)]
|
2023-07-02 12:35:19 +00:00
|
|
|
#![allow(clippy::unnecessary_literal_unwrap)]
|
2018-02-15 14:56:12 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: use of `unwrap_or` followed by a function call
|
|
|
|
//~| NOTE: `-D clippy::or-fun-call` implied by `-D warnings`
|
2018-02-15 14:56:12 +00:00
|
|
|
}
|
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();
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: use of `unwrap_or` followed by a function call
|
2018-02-20 17:37:30 +00:00
|
|
|
}
|