rust/tests/ui/span/destructor-restrictions.rs

12 lines
232 B
Rust

// 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);
}