about summary refs log tree commit diff
path: root/tests/ui/box/boxed-value-matching-57741.stderr
blob: 33d7a6759adf552573a84b4efe2ccd9885440505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error[E0308]: mismatched types
  --> $DIR/boxed-value-matching-57741.rs:15:9
   |
LL |     let y = match x {
   |                   - this expression has type `Box<u32>`
LL |         S::A { a } | S::B { b: a } => a,
   |         ^^^^^^^^^^ expected `Box<u32>`, found `S`
   |
   = note: expected struct `Box<u32>`
                found enum `S`

error[E0308]: mismatched types
  --> $DIR/boxed-value-matching-57741.rs:15:22
   |
LL |     let y = match x {
   |                   - this expression has type `Box<u32>`
LL |         S::A { a } | S::B { b: a } => a,
   |                      ^^^^^^^^^^^^^ expected `Box<u32>`, found `S`
   |
   = note: expected struct `Box<u32>`
                found enum `S`

error: aborting due to 2 previous errors

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