blob: fdbbdc3abb377b68ffc65520a8a6324dc6d9a8cb [file]
error[E0308]: mismatched types
--> $DIR/occurs-check.rs:5:9
|
LL | f = Box::new(f);
| ^^^^^^^^^^^ cyclic type of infinite size
|
help: consider unboxing the value
|
LL | f = *Box::new(f);
| +
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.