summary refs log tree commit diff
path: root/src/test/ui/unique/unique-deref.rs
blob: 0c6af0f7f97af2130b557ccd4b7b5157594ad960 (plain)
1
2
3
4
5
6
7
// run-pass
#![feature(box_syntax)]

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