2022-11-12 15:26:09 -06:00
|
|
|
#![warn(clippy::all, clippy::or_fun_call)]
|
2023-05-31 12:47:10 -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-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`
|
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-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: use of `unwrap_or` followed by a function call
|
2018-02-20 11:37:30 -06:00
|
|
|
}
|