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