rust/tests/ui/coroutine/dropck.rs

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

21 lines
650 B
Rust
Raw Normal View History

2023-10-19 16:46:28 -05:00
#![feature(coroutines, coroutine_trait)]
2018-01-11 12:50:01 -06:00
use std::cell::RefCell;
2023-10-19 11:06:43 -05:00
use std::ops::Coroutine;
2018-10-04 13:49:38 -05:00
use std::pin::Pin;
2018-01-11 12:50:01 -06:00
fn main() {
let (mut gen, cell);
2018-01-11 12:50:01 -06: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-11 12:50:01 -06:00
// the upvar is the non-dropck `&mut Option<Ref<'a, i32>>`.
gen = || {
2023-10-19 16:46:28 -05:00
// but the coroutine can use it to drop a `Ref<'a, i32>`.
2018-01-11 12:50:01 -06:00
let _d = ref_.take(); //~ ERROR `ref_` does not live long enough
yield;
};
Pin::new(&mut gen).resume(());
2018-01-11 12:50:01 -06:00
// drops the RefCell and then the Ref, leading to use-after-free
}