rust/tests/fail/stacked_borrows/deallocate_against_protector1.rs

14 lines
317 B
Rust
Raw Normal View History

2022-07-13 13:09:23 +00:00
//@error-pattern: /deallocating while item \[Unique for .*\] is protected/
2018-11-21 15:25:47 +01:00
fn inner(x: &mut i32, f: fn(&mut i32)) {
// `f` may mutate, but it may not deallocate!
f(x)
}
fn main() {
inner(Box::leak(Box::new(0)), |x| {
let raw = x as *mut _;
drop(unsafe { Box::from_raw(raw) });
});
}