rust/tests/ui/borrowck/borrowck-bad-nested-calls-free.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
683 B
Rust
Raw Normal View History

2013-03-15 19:24:24 +00:00
// Test that we detect nested calls that could free pointers evaluated
// for earlier arguments.
fn rewrite(v: &mut Box<usize>) -> usize {
*v = Box::new(22);
2013-03-15 19:24:24 +00:00
**v
}
fn add(v: &usize, w: usize) -> usize {
2013-03-15 19:24:24 +00:00
*v + w
}
fn implicit() {
let mut a: Box<_> = Box::new(1);
2013-03-15 19:24:24 +00:00
// Note the danger here:
//
// the pointer for the first argument has already been
// evaluated, but it gets freed when evaluating the second
// argument!
add(
&*a,
2013-03-15 19:24:24 +00:00
rewrite(&mut a)); //~ ERROR cannot borrow
}
fn explicit() {
let mut a: Box<_> = Box::new(1);
2013-03-15 19:24:24 +00:00
add(
&*a,
rewrite(&mut a)); //~ ERROR cannot borrow
}
fn main() {}