summary refs log tree commit diff
path: root/src/test/ui/issues/issue-15896.stderr
blob: de9757d5d32ed912e4cc322177d84d0b9b74e658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0308]: mismatched types
  --> $DIR/issue-15896.rs:11:11
   |
LL |     let u = match e {
   |                   - this match expression has type `main::R`
LL |         E::B(
LL |           Tau{t: x},
   |           ^^^^^^^^^ expected enum `main::R`, found struct `main::Tau`
   |
   = note: expected type `main::R`
              found type `main::Tau`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.