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

Missing parentheses for range leads to misleading help suggestion #102396

Closed
Rageking8 opened this issue Sep 28, 2022 · 1 comment · Fixed by #102454
Closed

Missing parentheses for range leads to misleading help suggestion #102396

Rageking8 opened this issue Sep 28, 2022 · 1 comment · Fixed by #102454
Assignees
Labels
A-diagnostics Area: Messages for errors, warnings, and lints D-confusing Diagnostics: Confusing error or lint that should be reworked. D-invalid-suggestion Diagnostics: A structured suggestion resulting in incorrect code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@Rageking8
Copy link
Contributor

Rageking8 commented Sep 28, 2022

Given the following code: link

fn main() { 
    for i in 1..11.rev() {
        println!("{i}");
    }
}

The current output is:

Compiling playground v0.0.1 (/playground)
error[[E0689]](https://doc.rust-lang.org/nightly/error-index.html#E0689): can't call method `rev` on ambiguous numeric type `{integer}`
 --> src/main.rs:2:20
  |
2 |     for i in 1..11.rev() {
  |                    ^^^
  |
help: you must specify a concrete type for this numeric value, like `i32`
  |
2 |     for i in 1..11_i32.rev() {
  |                 ~~~~~~

For more information about this error, try `rustc --explain E0689`.
error: could not compile `playground` due to previous error

Ideally the output should something like this:

Compiling playground v0.0.1 (/playground)
error[[E0689]](https://doc.rust-lang.org/nightly/error-index.html#E0689): can't call method `rev` on ambiguous numeric type `{integer}`
 --> src/main.rs:2:20
  |
2 |     for i in 1..11.rev() {
  |                    ^^^
  |
help: you must surround the range in parentheses to call the `rev` function
  |
2 |     for i in (1..11).rev() {
  |              +     +

For more information about this error, try `rustc --explain E0689`.
error: could not compile `playground` due to previous error

@rustbot label +D-confusing +D-invalid-suggestion

@Rageking8 Rageking8 added A-diagnostics Area: Messages for errors, warnings, and lints T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Sep 28, 2022
@rustbot rustbot added D-confusing Diagnostics: Confusing error or lint that should be reworked. D-invalid-suggestion Diagnostics: A structured suggestion resulting in incorrect code. labels Sep 28, 2022
@chenyukang
Copy link
Member

@rustbot claim

matthiaskrgr added a commit to matthiaskrgr/rust that referenced this issue Oct 17, 2022
…ntheses, r=lcnr

Suggest parentheses for possible range method calling

Fixes rust-lang#102396
@bors bors closed this as completed in 5dd44d4 Oct 17, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints D-confusing Diagnostics: Confusing error or lint that should be reworked. D-invalid-suggestion Diagnostics: A structured suggestion resulting in incorrect code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants