Sign in
rust
/
rust
/
1ce9c977ffcff7c3b12bfe5629a682da0e74a7a1
/
.
/
tests
/
ui
/
associated-types
/
wf-cycle-2.rs
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
()
{}