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

Suggest valid reverse for loop if an invalid variant is used #100635

Open
Rageking8 opened this issue Aug 16, 2022 · 2 comments
Open

Suggest valid reverse for loop if an invalid variant is used #100635

Rageking8 opened this issue Aug 16, 2022 · 2 comments
Labels
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.

Comments

@Rageking8
Copy link
Contributor

Rageking8 commented Aug 16, 2022

Given the following code: link

fn main() {
    for i in 10..0 {
        println!("{i}");
    }
    
    for i in (10..0).rev() {
        println!("{i}");
    }
    
    for i in (10..0).step_by(-1) {
        println!("{i}");
    }
}

The current output is:

Compiling playground v0.0.1 (/playground)
error[[E0600]](https://doc.rust-lang.org/nightly/error-index.html#E0600): cannot apply unary operator `-` to type `usize`
  --> src/main.rs:10:30
   |
10 |     for i in (10..0).step_by(-1) {
   |                              ^^
   |                              |
   |                              cannot apply unary operator `-`
   |                              help: you may have meant the maximum value of `usize`: `usize::MAX`
   |
   = note: unsigned values cannot be negated

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

Ideally the compiler should check if the range's start >= end and inform the user that its an empty iterator.

Then for the above few incorrect variants (and possibly more), suggest the correct way to write a reverse for loop.

@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 Aug 16, 2022
@5225225
Copy link
Contributor

5225225 commented Aug 16, 2022

Clippy seems to have a lint like this, https://rust-lang.github.io/rust-clippy/master/index.html#reversed_empty_ranges

Looks to emit a suggestion too.

It doesn't handle step_by(-1) because that doesn't compile. So yeah, rustc itself would probably need to handle that.

@obeis
Copy link
Contributor

obeis commented Aug 16, 2022

@rustbot claim

obeis added a commit to obeis/rust that referenced this issue Oct 4, 2022
obeis added a commit to obeis/rust that referenced this issue Oct 4, 2022
obeis added a commit to obeis/rust that referenced this issue Oct 4, 2022
@obeis obeis removed their assignment Aug 8, 2023
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 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