]> git.lizzy.rs Git - rust.git/blob - tests/ui/generic-associated-types/issue-86483.rs
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[rust.git] / tests / 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() {}