blob: 24ce97f86e76023476b602b1eb16b73c44e7f514 [file] [log] [blame]
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 reference
LL | | };
| |_____- `match` arms have incompatible types
|
= note: expected type `{integer}`
found type `&'static str`
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.