mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Fix bug in test pointed out during review.
This commit is contained in:
parent
a1b8a93f81
commit
c02c00b845
@ -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…
Reference in New Issue
Block a user