1 2 3 4 5 6 7 8 9
// run-pass #![allow(unused_mut)] #![feature(box_syntax)] pub fn main() { let mut i: Box<_>; i = box 100; assert_eq!(*i, 100); }