blob: 1b6e7ba7cf32ea7d9716be1c4a6a436778334210 [file]
fn main() {
let x = Box::new(10);
let y = x;
assert_eq!(*y, 10);
}