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

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