summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/boxed-variant-field.stderr
blob: 6dfb73480a2b88b7e30fbd9280cb6cbf760acea1 (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
26
27
error[E0308]: mismatched types
  --> $DIR/boxed-variant-field.rs:9:31
   |
LL |         Ty::List(elem) => foo(elem),
   |                           --- ^^^^ expected enum `Ty`, found struct `Box`
   |                           |
   |                           arguments to this function are incorrect
   |
   = note: expected enum `Ty`
            found struct `Box<Ty>`
note: function defined here
  --> $DIR/boxed-variant-field.rs:6:4
   |
LL | fn foo(x: Ty) -> Ty {
   |    ^^^ -----
help: consider unboxing the value
   |
LL |         Ty::List(elem) => foo(*elem),
   |                               +
help: try wrapping the expression in `Ty::List`
   |
LL |         Ty::List(elem) => foo(Ty::List(elem)),
   |                               +++++++++    +

error: aborting due to previous error

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