rust/tests/ui/traits/issue-85735.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
256 B
Rust
Raw Normal View History

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