Fix bug in test pointed out during review.

This commit is contained in:
Felix S. Klock II 2018-07-31 01:10:06 +02:00
parent a1b8a93f81
commit c02c00b845

View File

@ -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