Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure expect_fun_call bad suggestion is fixed #3846

Merged
merged 1 commit into from Mar 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/ui/expect_fun_call.fixed
Original file line number Diff line number Diff line change
@@ -81,4 +81,7 @@ fn main() {
Some("foo").unwrap_or_else(|| { panic!(get_static_str()) });
Some("foo").unwrap_or_else(|| { panic!(get_non_static_str(&0).to_string()) });
}

//Issue #3839
Some(true).unwrap_or_else(|| panic!("key {}, {}", 1, 2));
}
3 changes: 3 additions & 0 deletions tests/ui/expect_fun_call.rs
Original file line number Diff line number Diff line change
@@ -81,4 +81,7 @@ fn main() {
Some("foo").expect(get_static_str());
Some("foo").expect(get_non_static_str(&0));
}

//Issue #3839
Some(true).expect(&format!("key {}, {}", 1, 2));
}
8 changes: 7 additions & 1 deletion tests/ui/expect_fun_call.stderr
Original file line number Diff line number Diff line change
@@ -60,5 +60,11 @@ error: use of `expect` followed by a function call
LL | Some("foo").expect(get_non_static_str(&0));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| { panic!(get_non_static_str(&0).to_string()) })`

error: aborting due to 10 previous errors
error: use of `expect` followed by a function call
--> $DIR/expect_fun_call.rs:86:16
|
LL | Some(true).expect(&format!("key {}, {}", 1, 2));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| panic!("key {}, {}", 1, 2))`

error: aborting due to 11 previous errors