about summary refs log tree commit diff
path: root/src/test/ui/generator/partial-drop.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-92/+0
2022-08-21Rework point-at-argMichael Goulet-9/+30
2022-07-07Shorten span for closures.Camille GILLOT-3/+3
2022-02-28Enable drop-tracking tests behind -Zdrop-trackingEric Holk-12/+12
These were still disabled from the soft revert of drop tracking, which meant we were not catching regressions that were introduced while trying to fix drop tracking.
2022-01-18Respond to code review commentsEric Holk-3/+49
2022-01-18Safely handle partial dropsEric Holk-0/+25
We previously weren't tracking partial re-inits while being too aggressive around partial drops. With this change, we simply ignore partial drops, which is the safer, more conservative choice.