rust/tests/ui/impl-trait/two_tait_defining_each_other3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
497 B
Rust
Raw Normal View History

2023-11-09 04:08:02 -06:00
// revisions: current next
2023-12-14 06:11:28 -06:00
//[next] compile-flags: -Znext-solver
2023-11-09 04:08:02 -06:00
//[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)
2023-11-09 04:08:02 -06:00
//[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() {}