blob: d7467ac22371f53bcc4fbcc2127a89ddb5286be6 [file] [log] [blame]
// check-pass
trait IntoIt {
type Item;
}
impl<I> IntoIt for I {
type Item = ();
}
trait BaseGraph
where
<Self::VertexIter as IntoIt>::Item: Sized,
{
type VertexIter: IntoIt;
}
fn main() {}