mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
19 lines
636 B
Plaintext
19 lines
636 B
Plaintext
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 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|