Skip to content

Commit

Permalink
Add newlines in unwrap_or ui test
Browse files Browse the repository at this point in the history
  • Loading branch information
bootandy committed Feb 20, 2018
1 parent 941e062 commit f3d1a0c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions tests/ui/unwrap_or.rs
Expand Up @@ -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();
}
10 changes: 9 additions & 1 deletion tests/ui/unwrap_or.stderr
Expand Up @@ -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

0 comments on commit f3d1a0c

Please sign in to comment.