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