rust/tests/ui/coroutine/dropck.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
689 B
Rust
Raw Normal View History

#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
2018-01-12 02:50:01 +08:00
use std::cell::RefCell;
2023-10-20 00:06:43 +08:00
use std::ops::Coroutine;
2018-10-05 02:49:38 +08:00
use std::pin::Pin;
2018-01-12 02:50:01 +08:00
fn main() {
let (mut gen, cell);
2018-01-12 02:50:01 +08:00
cell = Box::new(RefCell::new(0));
let ref_ = Box::leak(Box::new(Some(cell.borrow_mut())));
//~^ ERROR `*cell` does not live long enough [E0597]
2018-01-12 02:50:01 +08:00
// the upvar is the non-dropck `&mut Option<Ref<'a, i32>>`.
gen = #[coroutine]
|| {
2023-10-20 05:46:28 +08:00
// but the coroutine can use it to drop a `Ref<'a, i32>`.
2018-01-12 02:50:01 +08:00
let _d = ref_.take(); //~ ERROR `ref_` does not live long enough
yield;
};
Pin::new(&mut gen).resume(());
2018-01-12 02:50:01 +08:00
// drops the RefCell and then the Ref, leading to use-after-free
}