mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
24 lines
708 B
Plaintext
24 lines
708 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/boxed-variant-field.rs:9:31
|
|
|
|
|
LL | Ty::List(elem) => foo(elem),
|
|
| --- ^^^^ expected `Ty`, found `Box<Ty>`
|
|
| |
|
|
| 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),
|
|
| +
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|