Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
lifetimes
/
lifetime-errors
/
ex3-both-anon-regions-using-fn-items.rs
blob: 2f67750d89b743ed80149cc85bb31a1c190905cd [
file
] [
log
] [
blame
]
fn
foo
(
x
:
fn
(&
u8
,
&
u8
),
y
:
Vec
<&
u8
>,
z
:
&
u8
)
{
y
.
push
(
z
);
//~^ ERROR lifetime may not live long enough
//~| ERROR cannot borrow
}
fn
main
()
{
}