mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
175 B
Rust
13 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);
|
|
}
|