summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-rec.rs
blob: 9f8ad9bb050430542106a076aa97abdf4c51fcee (plain)
1
2
3
4
5
6
7
8
9
// run-pass

struct X { x: isize }

pub fn main() {
    let x: Box<_> = Box::new(X {x: 1});
    let bar = x;
    assert_eq!(bar.x, 1);
}