Add newlines in unwrap_or ui test

This commit is contained in:
bootandy 2018-02-20 12:37:30 -05:00
parent 941e062fd4
commit f3d1a0cec2
2 changed files with 15 additions and 1 deletions

View file

@ -3,3 +3,9 @@
fn main() {
let s = Some(String::from("test string")).unwrap_or("Fail".to_string()).len();
}
fn new_lines() {
let s = Some(String::from("test string"))
.unwrap_or("Fail".to_string())
.len();
}

View file

@ -6,5 +6,13 @@ error: use of `unwrap_or` followed by a function call
|
= note: `-D or-fun-call` implied by `-D warnings`
error: aborting due to previous error
error: use of `unwrap_or` followed by a function call
--> $DIR/unwrap_or.rs:8:46
|
8 | let s = Some(String::from("test string"))
| ______________________________________________^
9 | | .unwrap_or("Fail".to_string())
| |______________________________________^ help: try this: `.unwrap_or_else(|| "Fail".to_string())`
error: aborting due to 2 previous errors