rust-clippy/tests/ui/unwrap_or.rs

14 lines
481 B
Rust
Raw Normal View History

#![warn(clippy::all, clippy::or_fun_call)]
#![allow(clippy::unnecessary_literal_unwrap)]
fn main() {
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
//~^ ERROR: use of `unwrap_or` followed by a function call
//~| NOTE: `-D clippy::or-fun-call` implied by `-D warnings`
}
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();
//~^ ERROR: use of `unwrap_or` followed by a function call
2018-02-20 17:37:30 +00:00
}