rust-clippy/tests/ui/unwrap_or.rs

10 lines
223 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::all)]
fn main() {
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
}
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();
2018-02-20 17:37:30 +00:00
}