Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
lifetimes
/
lifetime-errors
/
ex3-both-anon-regions-using-impl-items.rs
blob: 73e1789f225271f5fcb891625f40397e97fa601e [
file
]
trait
Foo
{
fn
foo
<
'
a
>(
x
:
&
mut
Vec
<&
u8
>,
y
:
&
u8
);
}
impl
Foo
for
()
{
fn
foo
(
x
:
&
mut
Vec
<&
u8
>,
y
:
&
u8
)
{
x
.
push
(
y
);
//~^ ERROR lifetime may not live long enough
}
}
fn
main
()
{}