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

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

20 lines
462 B
Rust
Raw Normal View History

2023-11-09 10:08:02 +00:00
//@ revisions: current next
2023-12-14 12:11:28 +00:00
//@[next] compile-flags: -Znext-solver
#![feature(type_alias_impl_trait)]
2023-11-09 10:08:02 +00:00
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)
2023-11-09 10:08:02 +00:00
//[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() {}