Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 03552ec

Browse files
committedJun 10, 2020
fix rebase
1 parent 7cde07e commit 03552ec

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/test/ui/issues/issue-72554.stderr

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ LL | pub enum ElemDerived {
66
LL | A(ElemDerived)
77
| ----------- recursive without indirection
88
|
9-
= help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `ElemDerived` representable
9+
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to make `ElemDerived` representable
10+
|
11+
LL | A(Box<ElemDerived>)
12+
| ^^^^ ^
1013

1114
error: aborting due to previous error
1215

0 commit comments

Comments
 (0)
Please sign in to comment.