rust/tests/ui/traits/issue-85735.rs
2023-01-11 09:32:08 +00:00

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() {}