blob: 62bc1966da6ff99251fbdfe9b06b019eb7fce195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![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();
//~^ ERROR: function call inside of `unwrap_or`
//~| NOTE: `-D clippy::or-fun-call` implied by `-D warnings`
}
fn new_lines() {
let s = Some(String::from("test string")).unwrap_or_else(|| "Fail".to_string()).len();
//~^ ERROR: function call inside of `unwrap_or`
}
|