summaryrefslogtreecommitdiffstats
path: root/tests/ui/span/destructor-restrictions.rs
blob: 7fb348a14bf557361e29a6bc5ae41b5de0492a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Tests the new destructor semantics.

use std::cell::RefCell;

fn main() {
    let b = {
        let a = Box::new(RefCell::new(4));
        *a.borrow() + 1
    }; //~^ ERROR `*a` does not live long enough
    println!("{}", b);
}