]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5358-1.stderr
Reword label as per review comment
[rust.git] / src / test / ui / issues / issue-5358-1.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-5358-1.rs:6:9
3    |
4 LL |     match S(Either::Left(5)) {
5    |           ------------------ this match expression has type `S`
6 LL |         Either::Right(_) => {}
7    |         ^^^^^^^^^^^^^^^^ expected struct `S`, found enum `Either`
8    |
9    = note: expected type `S`
10               found type `Either<_, _>`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0308`.