2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2021-07-14 13:34:28 +00:00
|
|
|
#![allow(dead_code)]
|
2015-01-08 01:25:56 +00:00
|
|
|
|
2014-01-03 23:30:54 +00:00
|
|
|
pub fn main() {
|
2022-07-07 02:36:10 +00:00
|
|
|
let mut x: Box<_> = Box::new(3);
|
2013-05-21 20:12:31 +00:00
|
|
|
x = x;
|
|
|
|
assert_eq!(*x, 3);
|
|
|
|
}
|