]> git.proxmox.com Git - rustc.git/blame - src/test/ui/generator/dropck.rs
New upstream version 1.27.1+dfsg1
[rustc.git] / src / test / ui / generator / dropck.rs
CommitLineData
2c00a5a8
XL
1// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11#![feature(generators, generator_trait, box_leak)]
12
13use std::cell::RefCell;
14use std::ops::Generator;
15
16fn main() {
17 let (cell, mut gen);
18 cell = Box::new(RefCell::new(0));
19 let ref_ = Box::leak(Box::new(Some(cell.borrow_mut())));
83c7162d 20 //~^ ERROR `*cell` does not live long enough [E0597]
2c00a5a8
XL
21 // the upvar is the non-dropck `&mut Option<Ref<'a, i32>>`.
22 gen = || {
23 // but the generator can use it to drop a `Ref<'a, i32>`.
24 let _d = ref_.take(); //~ ERROR `ref_` does not live long enough
25 yield;
26 };
0531ce1d 27 unsafe { gen.resume(); }
2c00a5a8
XL
28 // drops the RefCell and then the Ref, leading to use-after-free
29}