rust/tests/ui/suggestions/suggest-trait-in-ufcs-in-hrtb.rs

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

9 lines
151 B
Rust
Raw Normal View History

pub struct Bar<S>(S);
pub trait Foo {}
impl<S> Foo for Bar<S> where for<'a> <&'a S>::Item: Foo {}
//~^ ERROR ambiguous associated type
fn main() {}