]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0005.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / error-codes / E0005.stderr
1 error[E0005]: refutable pattern in local binding: `None` not covered
2   --> $DIR/E0005.rs:3:9
3    |
4 LL |     let Some(y) = x;
5    |         ^^^^^^^ pattern `None` 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: `Option<i32>` defined here
10   --> $SRC_DIR/core/src/option.rs:LL:COL
11    |
12 LL | pub enum Option<T> {
13    | ------------------
14 ...
15 LL |     None,
16    |     ^^^^ not covered
17    = note: the matched value is of type `Option<i32>`
18 help: you might want to use `if let` to ignore the variant that isn't matched
19    |
20 LL |     let y = if let Some(y) = x { y } else { todo!() };
21    |     ++++++++++                 ++++++++++++++++++++++
22 help: alternatively, on nightly, you might want to use `#![feature(let_else)]` to handle the variant that isn't matched
23    |
24 LL |     let Some(y) = x else { todo!() };
25    |                     ++++++++++++++++
26
27 error: aborting due to previous error
28
29 For more information about this error, try `rustc --explain E0005`.