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