mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-20 08:05:47 +00:00
12 lines
134 B
Rust
12 lines
134 B
Rust
//@ run-pass
|
|
|
|
fn f() {
|
|
let a: Box<_> = Box::new(1);
|
|
let b: &isize = &*a;
|
|
println!("{}", b);
|
|
}
|
|
|
|
pub fn main() {
|
|
f();
|
|
}
|