]> git.lizzy.rs Git - rust.git/blob - src/test/ui/recursion/recursive-types-are-not-uninhabited.stderr
Rollup merge of #98640 - cuviper:stable-rust-analyzer, r=Mark-Simulacrum
[rust.git] / src / test / ui / recursion / recursive-types-are-not-uninhabited.stderr
1 error[E0005]: refutable pattern in local binding: `Err(_)` not covered
2   --> $DIR/recursive-types-are-not-uninhabited.rs:6:9
3    |
4 LL |     let Ok(x) = res;
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, &R>` defined here
10   --> $SRC_DIR/core/src/result.rs:LL:COL
11    |
12 LL | / pub enum Result<T, E> {
13 LL | |     /// Contains the success value
14 LL | |     #[lang = "Ok"]
15 LL | |     #[stable(feature = "rust1", since = "1.0.0")]
16 ...  |
17 LL | |     Err(#[stable(feature = "rust1", since = "1.0.0")] E),
18    | |     ^^^ not covered
19 LL | | }
20    | |_-
21    = note: the matched value is of type `Result<u32, &R>`
22 help: you might want to use `if let` to ignore the variant that isn't matched
23    |
24 LL |     let x = if let Ok(x) = res { x } else { todo!() };
25    |     ++++++++++                 ++++++++++++++++++++++
26 help: alternatively, on nightly, you might want to use `#![feature(let_else)]` to handle the variant that isn't matched
27    |
28 LL |     let Ok(x) = res else { todo!() };
29    |                     ++++++++++++++++
30
31 error: aborting due to previous error
32
33 For more information about this error, try `rustc --explain E0005`.