about summary refs log tree commit diff
path: root/src/tools/miri/tests/pass/move-arg-3-unique.rs
blob: 6025481c32e24103f190e4de830e68b6a66257ee (plain)
1
2
3
4
5
pub fn main() {
    let x = Box::new(10);
    let y = x;
    assert_eq!(*y, 10);
}