blob: 6025481c32e24103f190e4de830e68b6a66257ee [file] [log] [blame]
pub fn main() {
let x = Box::new(10);
let y = x;
assert_eq!(*y, 10);
}