Sign in
rust
/
rust
/
656d4e8a962ca51f7a76167fc762fabfaec0cbbd
/
.
/
tests
/
ui
/
associated-types
/
wf-cycle-2.rs
blob: 36f79e34f3eaa53f47ec1cff01373792379a1593 [
file
]
//@ 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
()
{}