rust/tests/ui/issues/issue-5358-1.rs
Esteban Küber 62ba3e70a1 Modify primary span label for E0308
The previous output was unintuitive to users.
2023-01-30 20:12:19 +00:00

14 lines
327 B
Rust

enum Either<T, U> { Left(T), Right(U) }
struct S(Either<usize, usize>);
fn main() {
match S(Either::Left(5)) {
Either::Right(_) => {}
//~^ ERROR mismatched types
//~| expected `S`, found `Either<_, _>`
//~| expected struct `S`
//~| found enum `Either<_, _>`
_ => {}
}
}