Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

ices/108683.rs: fixed with errors #1584

Merged
merged 1 commit into from
May 12, 2023
Merged

ices/108683.rs: fixed with errors #1584

merged 1 commit into from
May 12, 2023

Conversation

github-actions[bot]
Copy link
Contributor

Issue: rust-lang/rust#108683

fn example(var: i32) {
    || {
        let 0 = var;
    };
}

fn main() {}
=== stdout ===
=== stderr ===
error[E0005]: refutable pattern in local binding
 --> /home/runner/work/glacier/glacier/ices/108683.rs:3:13
  |
3 |         let 0 = var;
  |             ^ patterns `i32::MIN..=-1_i32` and `1_i32..=i32::MAX` not covered
  |
  = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
  = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
  = note: the matched value is of type `i32`
help: you might want to use `if let` to ignore the variants that aren't matched
  |
3 |         if let 0 = var { todo!() };
  |         ++             +++++++++++
help: alternatively, you could prepend the pattern with an underscore to define a new named variable; identifiers cannot begin with digits
  |
3 |         let _0 = var;
  |             +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0005`.
==============

=== stdout ===
=== stderr ===
error[E0005]: refutable pattern in local binding
 --> /home/runner/work/glacier/glacier/ices/108683.rs:3:13
  |
3 |         let 0 = var;
  |             ^ patterns `i32::MIN..=-1_i32` and `1_i32..=i32::MAX` not covered
  |
  = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
  = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
  = note: the matched value is of type `i32`
help: you might want to use `if let` to ignore the variants that aren't matched
  |
3 |         if let 0 = var { todo!() };
  |         ++             +++++++++++
help: alternatively, you could prepend the pattern with an underscore to define a new named variable; identifiers cannot begin with digits
  |
3 |         let _0 = var;
  |             +

error: aborting due to previous error

For more information about this error, try `rustc --explain E0005`.
==============
@JohnTitor JohnTitor merged commit 533b8ef into master May 12, 2023
@JohnTitor JohnTitor deleted the autofix/ices/108683.rs branch May 12, 2023 11:21
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants