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