mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
175 B
Rust
12 lines
175 B
Rust
//@ run-pass
|
|
|
|
fn foo(x: &usize) -> usize {
|
|
*x
|
|
}
|
|
|
|
pub fn main() {
|
|
let p: Box<_> = Box::new(22);
|
|
let r = foo(&*p);
|
|
println!("r={}", r);
|
|
assert_eq!(r, 22);
|
|
}
|