mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
466 B
Rust
20 lines
466 B
Rust
// revisions: current next
|
|
//[next] compile-flags: -Ztrait-solver=next
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
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)
|
|
//[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() {}
|