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

20 lines
635 B
Rust
Raw Normal View History

#![feature(generators, generator_trait, box_leak)]
2018-01-11 12:50:01 -06:00
use std::cell::RefCell;
use std::ops::Generator;
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 = || {
// but the generator can use it to drop a `Ref<'a, i32>`.
let _d = ref_.take(); //~ ERROR `ref_` does not live long enough
yield;
};
unsafe { gen.resume(); }
2018-01-11 12:50:01 -06:00
// drops the RefCell and then the Ref, leading to use-after-free
}