Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
borrowck
/
two-phase-baseline.rs
blob: 07aea5fbff68ad4925f72d81d4eb3344f2cdc140 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
]);
}