Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
lifetimes
/
lifetime-errors
/
ex3-both-anon-regions-using-impl-items.rs
blob: 73e1789f225271f5fcb891625f40397e97fa601e [
file
] [
log
] [
blame
]
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
()
{}