summaryrefslogtreecommitdiffstats
path: root/tests/ui/box/unit/unique-deref.rs
blob: 33a1e9932b5d1beb07eef6cdbcd2fcfc56f67e00 (plain)
1
2
3
4
5
6
// run-pass

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