2023-11-09 11:08:02 +01:00
|
|
|
//@ revisions: current next
|
2024-03-10 21:18:41 -04:00
|
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
2023-12-14 13:11:28 +01:00
|
|
|
//@[next] compile-flags: -Znext-solver
|
2022-02-14 16:10:22 +00:00
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
|
2024-07-31 12:58:32 +00:00
|
|
|
type A = impl Foo;
|
2022-02-14 16:10:22 +00:00
|
|
|
type B = impl Foo;
|
|
|
|
|
|
|
|
|
|
trait Foo {}
|
|
|
|
|
|
2024-07-26 10:04:02 +00:00
|
|
|
#[define_opaque(A, B)]
|
2022-02-14 16:10:22 +00:00
|
|
|
fn muh(x: A) -> B {
|
2025-04-01 23:48:41 +02:00
|
|
|
//[next]~^ ERROR: cannot satisfy `_ == A`
|
2022-02-14 16:10:22 +00:00
|
|
|
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
|
2022-02-14 16:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|