mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-09 14:25:24 +00:00
24 lines
497 B
Rust
24 lines
497 B
Rust
// revisions: current next
|
|
//[next] compile-flags: -Ztrait-solver=next
|
|
//[next] check-pass
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
type A = impl Foo;
|
|
type B = impl Foo;
|
|
|
|
trait Foo {}
|
|
|
|
fn muh(x: A) -> B {
|
|
if false {
|
|
return Bar; // B's hidden type is Bar
|
|
}
|
|
x // A's hidden type is `Bar`, because all the hidden types of `B` are compared with each other
|
|
//[current]~^ ERROR opaque type's hidden type cannot be another opaque type
|
|
}
|
|
|
|
struct Bar;
|
|
impl Foo for Bar {}
|
|
|
|
fn main() {}
|