blob: b2edc1a1f66ca8b3c9d2e1e1f7cae8193e41ab9f [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
//~| ERROR cycle detected
}
fn main() { }