about summary refs log tree commit diff
path: root/tests/ui/generic-associated-types/issue-86483.rs
blob: 82ef17ca6c9eeb9f23c4fdc66140952731c46a83 (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() {}