Sign in
rust
/
rust
/
e8a63124746761e743d69ea510194de2ada4034f
/
.
/
tests
/
ui
/
cycle-trait
/
cycle-trait-default-type-trait.rs
blob: 6175b7df1107ad78029a5ffc4f4231a2d105a05b [
file
] [
log
] [
blame
]
// Test a cycle where a type parameter on a trait has a default that
// again references the trait.
trait
Foo
<
X
=
Box
<
dyn
Foo
>>
{
//~^ ERROR cycle detected
}
fn
main
()
{
}