Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
issue-34979.rs
blob: 252486dd92192011856e5bd884797e5f4f7ada08 [
file
] [
log
] [
blame
] [
edit
]
trait
Foo
{}
impl
<
'a, T> Foo for &'
a T
{}
struct
Ctx
<
'a>(&'
a
())
where
&
'
a
():
Foo
,
//~ ERROR: type annotations needed
&
'
static
():
Foo
;
fn
main
()
{}