summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/issue-84931.rs
blob: 2ef990a7a90725a09cd3fcb0ea5c6a77aced796b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// check-fail

trait StreamingIter {
    type Item<'a> where Self: 'a;
    fn next<'a>(&'a mut self) -> Option<Self::Item::<'a>>;
}

struct StreamingSliceIter<'a, T> {
    idx: usize,
    data: &'a mut [T],
}

impl<'b, T: 'b> StreamingIter for StreamingSliceIter<'b, T> {
    type Item<'a> = &'a mut T;
    //~^ ERROR: the parameter type
    //~| ERROR: does not fulfill the required lifetime
    fn next(&mut self) -> Option<&mut T> {
        loop {}
    }
}

fn main() {}