blob: 3689ddac5d10971bbe054f3c4d3d17243188784e [file] [log] [blame] [edit]
//@ run-pass
//! regression test for <https://github.com/rust-lang/rust/issues/3290>
#![allow(dead_code)]
pub fn main() {
let mut x: Box<_> = Box::new(3);
x = x;
assert_eq!(*x, 3);
}