rust/tests/ui/impl-trait/two_tait_defining_each_other.rs
2023-01-11 09:32:08 +00:00

20 lines
396 B
Rust

#![feature(type_alias_impl_trait)]
type A = impl Foo;
type B = impl Foo;
trait Foo {}
fn muh(x: A) -> B {
if false {
return Bar; // B's hidden type is Bar
}
x // A's hidden type is `Bar`, because all the hidden types of `B` are compared with each other
//~^ ERROR opaque type's hidden type cannot be another opaque type
}
struct Bar;
impl Foo for Bar {}
fn main() {}