summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/match-arm-resolving-to-never.stderr
blob: 686fbd0baa3ce9bdc0a4f3ded282c50957566816 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0308]: `match` arms have incompatible types
  --> $DIR/match-arm-resolving-to-never.rs:17:17
   |
LL | /     match E::F {
LL | |         E::A => 1,
LL | |         E::B => 2,
LL | |         E::C => 3,
LL | |         E::D => 4,
LL | |         E::E => unimplemented!(""),
   | |                 ------------------ this and all prior arms are found to be of type `{integer}`
LL | |         E::F => "",
   | |                 ^^ expected integer, found `&str`
LL | |     };
   | |_____- `match` arms have incompatible types

error: aborting due to previous error

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