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