summaryrefslogtreecommitdiff
path: root/tests/ui/suggestions/issue-85347.rs
blob: 95e76e76cfa8a1b49aae8edf7f603e93040edb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::ops::Deref;
trait Foo {
    type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
    //~^ ERROR associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
    //~| HELP add missing
    //~| ERROR associated type bindings are not allowed here
    //~| HELP consider removing this type binding
    //~| ERROR associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
    //~| HELP add missing
    //~| ERROR associated type bindings are not allowed here
    //~| HELP consider removing this type binding
}

fn main() {}