mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:58:10 +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();
|
|
}
|