mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
249 B
Rust
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() {}
|