about summary refs log tree commit diff
path: root/tests/ui/borrowck/two-phase-baseline.rs
blob: 07aea5fbff68ad4925f72d81d4eb3344f2cdc140 (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]);
}