mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
13 lines
497 B
Rust
13 lines
497 B
Rust
#![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: use of `unwrap_or` followed by a function call
|
|
//~| 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: use of `unwrap_or` followed by a function call
|
|
}
|