about summary refs log tree commit diff
path: root/tests/ui/box/unit/unique-deref.rs
blob: aa69a936308db7e5b5e337d1f5b34e2c6ae1ea19 (plain)
1
2
3
4
5
6
//@ run-pass

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