blob: 4a5ee56ea92828644d699e722c9a4856bef014bd [file] [log] [blame]
// run-pass
#![feature(box_syntax)]
pub fn main() {
let i: Box<_> = box 100;
let j = i;
assert_eq!(*j, 100);
}