mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
338 B
Rust
18 lines
338 B
Rust
// run-pass
|
|
|
|
fn borrow<F>(x: &isize, f: F) where F: FnOnce(&isize) {
|
|
f(x)
|
|
}
|
|
|
|
fn test1(x: &Box<isize>) {
|
|
borrow(&*(*x).clone(), |p| {
|
|
let x_a = &**x as *const isize;
|
|
assert!((x_a as usize) != (p as *const isize as usize));
|
|
assert_eq!(unsafe{*x_a}, *p);
|
|
})
|
|
}
|
|
|
|
pub fn main() {
|
|
test1(&Box::new(22));
|
|
}
|