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