rust/tests/ui/span/destructor-restrictions.rs
2023-01-11 09:32:08 +00:00

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