blob: a41add6a1ccea775f1a9348fd69848018110cf98 [file] [log] [blame]
// Negative implementations should not be shown in trait suggestions.
// This is a regression test of #79458.
#[derive(Clone)]
struct Foo<'a, T> {
bar: &'a mut T
//~^ ERROR the trait bound `&mut T: Clone` is not satisfied
}
fn main() {}