Fix bug in test pointed out during review.
This commit is contained in:
parent
a1b8a93f81
commit
c02c00b845
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ struct E { field: F }
|
|||
struct F { field: Box<E> }
|
||||
|
||||
// indirect non-regular recursion with indirect ownership via box.
|
||||
struct G { field: (F, F) }
|
||||
struct H { field: Box<E> }
|
||||
struct G { field: (H, H) }
|
||||
struct H { field: Box<G> }
|
||||
|
||||
// These enums are cases that are not currently hit by the
|
||||
// `visit_terminator_drop` recursion down a type's structural
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue