summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/two-phase-baseline.rs
blob: 994dc823dfc0c5da1acb9889f4a0a1166706478b (plain)
1
2
3
4
5
6
7
8
9
// run-pass

// This is the "goto example" for why we want two phase borrows.

fn main() {
    let mut v = vec![0, 1, 2];
    v.push(v.len());
    assert_eq!(v, [0, 1, 2, 3]);
}