mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
306 B
Rust
17 lines
306 B
Rust
#![feature(type_alias_impl_trait)]
|
|
|
|
type A = impl Foo; //~ ERROR unconstrained opaque type
|
|
type B = impl Foo;
|
|
|
|
trait Foo {}
|
|
|
|
fn muh(x: A) -> B {
|
|
x // B's hidden type is A (opaquely)
|
|
//~^ ERROR opaque type's hidden type cannot be another opaque type
|
|
}
|
|
|
|
struct Bar;
|
|
impl Foo for Bar {}
|
|
|
|
fn main() {}
|