mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
256 B
Rust
14 lines
256 B
Rust
// 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() {}
|