]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/pattern/usefulness/refutable-pattern-errors.stderr
Suggest `if let`/`let_else` for refutable pat in `let`
[rust.git] / src / test / ui / pattern / usefulness / refutable-pattern-errors.stderr
index 74ec646e31cca27b5507217ca02b197c51fc2d0d..e3ffc092327acc8bf0dfe47975010cde9ec8d5a4 100644 (file)
@@ -15,10 +15,14 @@ LL |     let (1, (Some(1), 2..=3)) = (1, (None, 2));
    = 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, (Option<i32>, i32))`
-help: you might want to use `if let` to ignore the variant that isn't matched
+help: you might want to use `if let` to ignore the variants that aren't matched
    |
-LL |     if let (1, (Some(1), 2..=3)) = (1, (None, 2)) { /* */ }
+LL |     if let (1, (Some(1), 2..=3)) = (1, (None, 2)) { todo!() }
+   |     ++                                            ~~~~~~~~~~~
+help: alternatively, on nightly, you might want to use `#![feature(let_else)]` to handle the variants that aren't matched
    |
+LL |     let (1, (Some(1), 2..=3)) = (1, (None, 2)) else { todo!() };
+   |                                                ++++++++++++++++
 
 error: aborting due to 2 previous errors