2023-11-09 04:08:02 -06:00
|
|
|
//@ revisions: current next
|
2024-03-10 20:18:41 -05:00
|
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
2023-12-14 06:11:28 -06:00
|
|
|
//@[next] compile-flags: -Znext-solver
|
2022-02-14 10:10:22 -06:00
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
|
2023-11-09 04:08:02 -06:00
|
|
|
type A = impl Foo; //[current]~ ERROR unconstrained opaque type
|
2022-02-14 10:10:22 -06:00
|
|
|
type B = impl Foo;
|
|
|
|
|
|
|
|
trait Foo {}
|
|
|
|
|
|
|
|
fn muh(x: A) -> B {
|
2024-02-26 03:19:11 -06:00
|
|
|
//[next]~^ ERROR type annotations needed: cannot satisfy `_ == A`
|
2022-02-14 10:10:22 -06:00
|
|
|
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
|
2022-02-14 10:10:22 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
impl Foo for Bar {}
|
|
|
|
|
|
|
|
fn main() {}
|