about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-move-temp.rs
blob: f86a2a3b7e452b21d5661027af3f82dce312921d (plain)
1
2
3
4
5
6
7
8
//@ run-pass
#![allow(unused_mut)]

pub fn main() {
    let mut i: Box<_>;
    i = Box::new(100);
    assert_eq!(*i, 100);
}