Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
lifetimes
/
lifetime-errors
/
ex3-both-anon-regions-both-are-structs-earlybound-regions.rs
blob: 9b8cfe670e612eaf510ea6e74c764ec476354c25 [
file
] [
log
] [
blame
] [
edit
]
struct
Ref
<
'
a
>
{
x
:
&
'
a u32
,
}
fn
foo
<
'a, '
b
>(
mut
x
:
Vec
<
Ref
<
'a>>, y: Ref<'
b
>)
where
&
'
a
():
Sized
,
&
'
b u32
:
Sized
{
x
.
push
(
y
);
//~^ ERROR lifetime may not live long enough
}
fn
main
()
{}