summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-62200.rs
blob: 499bbd6b6fad2e1a6cdcf821cbe26c39a2254487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct S {}

trait T<'a> {
    type A;
}

impl T<'_> for S {
    type A = u32;
}

fn foo(x: impl Fn(<S as T<'_>>::A) -> <S as T<'_>>::A) {}
//~^ ERROR binding for associated type `Output` references an anonymous lifetime
//~| NOTE lifetimes appearing in an associated or opaque type are not considered constrained
//~| NOTE consider introducing a named lifetime parameter

fn main() {}