1 2 3 4 5 6 7 8 9
trait T {} fn wrap(x: impl T) -> impl T { //~^ ERROR cannot resolve opaque type //~| WARN function cannot return without recursing wrap(wrap(x)) } fn main() {}