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

type A = impl Foo;
type B = impl Foo;

trait Foo {}

fn muh(x: A) -> B {
    if false {
        return x;  // B's hidden type is A (opaquely)
        //[current]~^ ERROR opaque type's hidden type cannot be another opaque type
    }
    Bar // A's hidden type is `Bar`, because all the return types are compared with each other
}

struct Bar;
impl Foo for Bar {}

fn main() {}