summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cycle-trait/cycle-trait-default-type-trait.rs
blob: 6175b7df1107ad78029a5ffc4f4231a2d105a05b (plain)
1
2
3
4
5
6
7
8
// 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() { }