summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-86483.rs
blob: 70267637ae9d69bfe9bed76a6701d40562142734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Regression test of #86483.
//
// Made to pass as part of fixing #98095.
//
// check-pass

pub trait IceIce<T>
where
    for<'a> T: 'a,
{
    type Ice<'v>: IntoIterator<Item = &'v T>;
}

fn main() {}