]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/issue-86483.rs
Rollup merge of #101741 - andrewpollack:add-needs-unwind-ui-tests, r=tmandry
[rust.git] / src / test / ui / generic-associated-types / issue-86483.rs
1 // Regression test of #86483.
2 //
3 // Made to pass as part of fixing #98095.
4 //
5 // check-pass
6
7 pub trait IceIce<T>
8 where
9     for<'a> T: 'a,
10 {
11     type Ice<'v>: IntoIterator<Item = &'v T>;
12 }
13
14 fn main() {}