about summary refs log tree commit diff
path: root/tests/ui/async-await/async-drop/async-drop-initial.rs
AgeCommit message (Collapse)AuthorLines
2025-06-14Async drop - fix for StorageLive/StorageDead codegen for pinned async drop ↵Andrew Zhogin-1/+1
future
2025-05-12ui/async-drop-initial: factor in panic strategy in destructor size checkJorge Aparicio-1/+4
the size of `AsyncStruct`'s destructor depends on whether the configured panic strategy is 'unwind' or 'abort' so factor that into the test using conditional compilation fixes rust-lang/rust#140939
2025-04-28AsyncDrop implementation using shim codegen of ↵Andrew Zhogin-0/+243
async_drop_in_place::{closure}, scoped async drop added.