rust/src/test/ui/generator/dropck.rs

21 lines
660 B
Rust
Raw Normal View History

#![feature(generators, generator_trait, box_leak)]
2018-01-11 18:50:01 +00:00
use std::cell::RefCell;
use std::ops::Generator;
2018-10-04 18:49:38 +00:00
use std::pin::Pin;
2018-01-11 18:50:01 +00:00
fn main() {
let (mut gen, cell);
2018-01-11 18:50:01 +00: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 18:50:01 +00:00
// the upvar is the non-dropck `&mut Option<Ref<'a, i32>>`.
gen = || {
// but the generator can use it to drop a `Ref<'a, i32>`.
let _d = ref_.take(); //~ ERROR `ref_` does not live long enough
yield;
};
Pin::new(&mut gen).resume(());
2018-01-11 18:50:01 +00:00
// drops the RefCell and then the Ref, leading to use-after-free
}