summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-62326-parameter-out-of-range.rs
blob: c1140bff82bae1e8461ec698966cfdb75c1ae23b (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass

trait Iterator {
    type Item<'a>: 'a;
}

impl Iterator for () {
    type Item<'a> = &'a ();
}

fn main() {}