rust/src/test/run-pass/borrowck-borrow-from-expr-block.rs

18 lines
344 B
Rust
Raw Normal View History

import ptr::to_uint;
fn borrow(x: &int, f: fn(x: &int)) {
f(x)
}
fn test1(x: @~int) {
// Right now, at least, this induces a copy of the unique pointer:
2012-06-30 18:19:07 -05:00
do borrow({*x}) |p| {
let x_a = ptr::addr_of(**x);
assert (x_a as uint) != to_uint(p);
assert unsafe{*x_a} == *p;
}
}
fn main() {
test1(@~22);
}