rust/tests/ui/suggestions/boxed-variant-field.rs

16 lines
249 B
Rust

enum Ty {
Unit,
List(Box<Ty>),
}
fn foo(x: Ty) -> Ty {
match x {
Ty::Unit => Ty::Unit,
Ty::List(elem) => foo(elem),
//~^ ERROR mismatched types
//~| HELP consider unboxing the value
}
}
fn main() {}