summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/issue-86218.rs
blob: 61cfdd35a8926bc8e928884df015c070c287e486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// check-pass

#![feature(impl_trait_in_assoc_type)]

pub trait Stream {
    type Item;
}

impl Stream for () {
    type Item = i32;
}

trait Yay<AdditionalValue> {
    type InnerStream<'s>: Stream<Item = i32> + 's;
    fn foo<'s>() -> Self::InnerStream<'s>;
}

impl<'a> Yay<&'a ()> for () {
    type InnerStream<'s> = impl Stream<Item = i32> + 's;
    //^ ERROR does not fulfill the required lifetime
    fn foo<'s>() -> Self::InnerStream<'s> {
        ()
    }
}

fn main() {}