blob: 63e1b28a60a1e405913d8ebf8f46674f8b37b0cd [file] [log] [blame]
// run-pass
#![feature(box_syntax)]
pub fn main() {
let mut x: Box<_> = box 3;
x = x;
assert_eq!(*x, 3);
}