]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-exhaustive-patterns.stderr
Organize `never_type` tests
[rust.git] / src / test / 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 help: you might want to use `if let` to ignore the variant that isn't matched
10    |
11 LL |     if let Ok(_x) = foo() { /* */ }
12    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0005`.