fix rebase

This commit is contained in:
Esteban Küber 2020-06-10 14:54:27 -07:00
parent 7cde07e5cc
commit 03552ec3fa
1 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,10 @@ LL | pub enum ElemDerived {
LL | A(ElemDerived)
| ----------- recursive without indirection
|
= help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `ElemDerived` representable
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `ElemDerived` representable
|
LL | A(Box<ElemDerived>)
| ^^^^ ^
error: aborting due to previous error