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