mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
23 lines
366 B
Rust
23 lines
366 B
Rust
//@ compile-flags: -Znext-solver
|
|
//@ check-pass
|
|
#![feature(trait_upcasting)]
|
|
|
|
trait A {}
|
|
trait B: A {}
|
|
|
|
impl A for usize {}
|
|
impl B for usize {}
|
|
|
|
trait Mirror {
|
|
type Assoc: ?Sized;
|
|
}
|
|
|
|
impl<T: ?Sized> Mirror for T {
|
|
type Assoc = T;
|
|
}
|
|
|
|
fn main() {
|
|
let x = Box::new(1usize) as Box<<dyn B as Mirror>::Assoc>;
|
|
let y = x as Box<<dyn A as Mirror>::Assoc>;
|
|
}
|