mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
133 B
Rust
12 lines
133 B
Rust
// run-pass
|
|
|
|
fn f() {
|
|
let a: Box<_> = Box::new(1);
|
|
let b: &isize = &*a;
|
|
println!("{}", b);
|
|
}
|
|
|
|
pub fn main() {
|
|
f();
|
|
}
|