mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 13:34:38 +00:00
12 lines
141 B
Rust
12 lines
141 B
Rust
//@ run-pass
|
|
|
|
fn f(i: Box<isize>) {
|
|
assert_eq!(*i, 100);
|
|
}
|
|
|
|
pub fn main() {
|
|
f(Box::new(100));
|
|
let i = Box::new(100);
|
|
f(i);
|
|
}
|