]> git.proxmox.com Git - rustc.git/blame - src/test/ui/match/match-arm-resolving-to-never.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / match / match-arm-resolving-to-never.stderr
CommitLineData
416331ca
XL
1error[E0308]: match arms have incompatible types
2 --> $DIR/match-arm-resolving-to-never.rs:17:17
3 |
4LL | / match E::F {
5LL | | E::A => 1,
6LL | | E::B => 2,
7LL | | E::C => 3,
8LL | | E::D => 4,
9LL | | E::E => unimplemented!(""),
10 | | ------------------ this and all prior arms are found to be of type `{integer}`
11LL | | E::F => "",
60c5eb7d 12 | | ^^ expected integer, found `&str`
416331ca
XL
13LL | | };
14 | |_____- `match` arms have incompatible types
15 |
416331ca
XL
16 = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
17
18error: aborting due to previous error
19
20For more information about this error, try `rustc --explain E0308`.