Files
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.

22 lines
472 B
Rust
Raw Normal View History

2023-11-09 11:08:02 +01:00
//@ revisions: current next
//@ ignore-compare-mode-next-solver (explicit revisions)
2023-12-14 13:11:28 +01:00
//@[next] compile-flags: -Znext-solver
#![feature(type_alias_impl_trait)]
type A = impl Foo;
type B = impl Foo;
trait Foo {}
#[define_opaque(A, B)]
fn muh(x: A) -> B {
2025-04-01 23:48:41 +02:00
//[next]~^ ERROR: cannot satisfy `_ == A`
x // B's hidden type is A (opaquely)
2023-11-09 11:08:02 +01:00
//[current]~^ ERROR opaque type's hidden type cannot be another opaque type
}
struct Bar;
impl Foo for Bar {}
fn main() {}