2024-01-22 12:23:50 +00:00
|
|
|
#![feature(dyn_star, trait_upcasting)]
|
2022-11-19 04:48:01 +00:00
|
|
|
//~^ WARN the feature `dyn_star` is incomplete and may not be safe to use and/or cause compiler crashes
|
|
|
|
|
|
|
|
trait A: B {}
|
|
|
|
trait B {}
|
|
|
|
impl A for usize {}
|
|
|
|
impl B for usize {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x: Box<dyn* A> = Box::new(1usize as dyn* A);
|
|
|
|
let y: Box<dyn* B> = x;
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|