about summary refs log tree commit diff
path: root/tests/ui/recursion/issue-23122-2.rs
blob: d4f13e9fa55878c84f325602cced9271bc69a081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ compile-flags: -Zwrite-long-types-to-disk=yes
trait Next {
    type Next: Next;
}

struct GetNext<T: Next> {
    t: T,
}

impl<T: Next> Next for GetNext<T> {
    type Next = <GetNext<T::Next> as Next>::Next;
    //~^ ERROR overflow evaluating the requirement
}

fn main() {}