blob: 36f79e34f3eaa53f47ec1cff01373792379a1593 [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() {}