Sign in
rust
/
rust-lang
/
rust
/
1b01decc1ca851e014b6951bdd7f2ac2f897adc9
/
.
/
tests
/
ui
/
codemap_tests
/
one_line.rs
blob: bb36813dbddf54e15b3a3b56fe5fd757a5be2c74 [
file
] [
log
] [
blame
]
fn
main
()
{
let
mut
v
=
vec
![
Some
(
"foo"
),
Some
(
"bar"
)];
v
.
push
(
v
.
pop
().
unwrap
());
//~ ERROR cannot borrow
}