summaryrefslogtreecommitdiffstats
path: root/src/test/ui/never_type/exhaustive_patterns.stderr
blob: e41baf862180d97103f5a39461db13ccf760ffeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error[E0005]: refutable pattern in local binding: `Either::B(_)` not covered
  --> $DIR/exhaustive_patterns.rs:20:9
   |
LL |     let Either::A(()) = foo();
   |         ^^^^^^^^^^^^^ pattern `Either::B(_)` not covered
   |
   = note: `let` bindings require an "irrefutable pattern", like a `struct` or an `enum` with only one variant
   = note: for more information, visit https://doc.rust-lang.org/book/ch18-02-refutability.html
note: `Either<(), !>` defined here
  --> $DIR/exhaustive_patterns.rs:12:5
   |
LL | enum Either<A, B> {
   |      ------
LL |     A(A),
LL |     B(inner::Wrapper<B>),
   |     ^ not covered
   = note: the matched value is of type `Either<(), !>`
help: you might want to use `if let` to ignore the variant that isn't matched
   |
LL |     if let Either::A(()) = foo() { todo!() }
   |     ++                           ~~~~~~~~~~~

error: aborting due to previous error

For more information about this error, try `rustc --explain E0005`.