]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-exhaustive-patterns.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / feature-gates / feature-gate-exhaustive-patterns.stderr
1 error[E0005]: refutable pattern in local binding: `Err(_)` not covered
2   --> $DIR/feature-gate-exhaustive-patterns.rs:8:9
3    |
4 LL |     let Ok(_x) = foo();
5    |         ^^^^^^ pattern `Err(_)` not covered
6    |
7    = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
8    = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
9 note: `Result<u32, !>` defined here
10   --> $SRC_DIR/core/src/result.rs:LL:COL
11   ::: $SRC_DIR/core/src/result.rs:LL:COL
12    |
13    = note: not covered
14    = note: the matched value is of type `Result<u32, !>`
15 help: you might want to use `if let` to ignore the variant that isn't matched
16    |
17 LL |     let _x = if let Ok(_x) = foo() { _x } else { todo!() };
18    |     +++++++++++                    +++++++++++++++++++++++
19 help: alternatively, you might want to use let else to handle the variant that isn't matched
20    |
21 LL |     let Ok(_x) = foo() else { todo!() };
22    |                        ++++++++++++++++
23
24 error: aborting due to previous error
25
26 For more information about this error, try `rustc --explain E0005`.