blob: 994dc823dfc0c5da1acb9889f4a0a1166706478b [file] [log] [blame]
// 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]);
}