summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-85347.rs
blob: 04d4c47d8e5833abce7819e817068988f8f5e9ea (plain)
1
2
3
4
5
6
7
8
9
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
    //~| ERROR associated type bindings are not allowed here
    //~| HELP add missing
}

fn main() {}