blob: f86a2a3b7e452b21d5661027af3f82dce312921d [file] [log] [blame] [edit]
//@ run-pass
#![allow(unused_mut)]
pub fn main() {
let mut i: Box<_>;
i = Box::new(100);
assert_eq!(*i, 100);
}