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