Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
borrowck
/
two-phase-baseline.rs
blob: 07aea5fbff68ad4925f72d81d4eb3344f2cdc140 [
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
]);
}