summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/issue-79458.rs
blob: a41add6a1ccea775f1a9348fd69848018110cf98 (plain)
1
2
3
4
5
6
7
8
9
10
// 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() {}