]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0004-2.stderr
Suggest `if let`/`let_else` for refutable pat in `let`
[rust.git] / src / test / ui / error-codes / E0004-2.stderr
1 error[E0004]: non-exhaustive patterns: `None` and `Some(_)` not covered
2   --> $DIR/E0004-2.rs:4:11
3    |
4 LL |     match x { }
5    |           ^ patterns `None` and `Some(_)` not covered
6    |
7 note: `Option<i32>` defined here
8   --> $SRC_DIR/core/src/option.rs:LL:COL
9    |
10 LL | / pub enum Option<T> {
11 LL | |     /// No value.
12 LL | |     #[lang = "None"]
13 LL | |     #[stable(feature = "rust1", since = "1.0.0")]
14 LL | |     None,
15    | |     ^^^^ not covered
16 ...  |
17 LL | |     Some(#[stable(feature = "rust1", since = "1.0.0")] T),
18    | |     ^^^^ not covered
19 LL | | }
20    | |_-
21    = note: the matched value is of type `Option<i32>`
22 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
23    |
24 LL ~     match x {
25 LL +         None | Some(_) => todo!(),
26 LL ~     }
27    |
28
29 error: aborting due to previous error
30
31 For more information about this error, try `rustc --explain E0004`.