summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-reinit.rs
blob: 866b3a2a8af9b485346667b1522910c8e1a79a5b (plain)
1
2
3
4
5
6
7
fn main() {
    let mut x = Box::new(0);
    let _u = x; // error shouldn't note this move
    x = Box::new(1);
    drop(x);
    let _ = (1,x); //~ ERROR use of moved value: `x`
}