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
|
|
|
|
2018-04-16 05:41:32 -05:00
|
|
|
fn main() {
|
2018-05-25 05:36:58 -05:00
|
|
|
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())));
|
2018-04-16 05:41:32 -05:00
|
|
|
//~^ 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;
|
|
|
|
};
|
2020-01-25 13:03:10 -06:00
|
|
|
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
|
|
|
|
}
|