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