summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/two_tait_defining_each_other2.rs
blob: 8a79af19776b7d5ac24f70f1210a5e5feb2e8c7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// revisions: current next
//[next] compile-flags: -Znext-solver
#![feature(type_alias_impl_trait)]

type A = impl Foo; //[current]~ ERROR unconstrained opaque type
type B = impl Foo;

trait Foo {}

fn muh(x: A) -> B {
    x // B's hidden type is A (opaquely)
    //[current]~^ ERROR opaque type's hidden type cannot be another opaque type
    //[next]~^^ ERROR type annotations needed: cannot satisfy `A <: B`
}

struct Bar;
impl Foo for Bar {}

fn main() {}