mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
Add newlines in unwrap_or ui test
This commit is contained in:
parent
941e062fd4
commit
f3d1a0cec2
2 changed files with 15 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue