summary refs log tree commit diff
path: root/src/test/ui/nll/move-subpaths-moves-root.rs
blob: e7caf89e78391d2b50eec6e068edd5afbe67764e (plain)
1
2
3
4
5
fn main() {
    let x = (vec![1, 2, 3], );
    drop(x.0);
    drop(x); //~ ERROR use of moved value
}