rust/tests/ui/box/unit/unique-move.rs
2024-02-16 20:02:50 +00:00

10 lines
140 B
Rust

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