Sign in
rust
/
rust
/
5a96067a65dfd15fdd13b2d5b6f01884ed30d00a
/
.
/
tests
/
ui
/
traits
/
issue-85735.rs
blob: fb387a9c909657066c9d9fbe0a617ae46f03d05d [
file
]
// Regression test for the invalid suggestion in #85735 (the
// underlying issue #21974 still exists here).
trait
Foo
{}
impl
<
'a, '
b
,
T
>
Foo
for
T
where
T
:
FnMut
(&
'
a
()),
//~^ ERROR: type annotations needed
T
:
FnMut
(&
'
b
()),
{
}
fn
main
()
{}