rust/tests/ui/dyn-star/dyn-star-to-dyn.rs
2023-01-11 19:52:42 +00:00

10 lines
226 B
Rust

// build-pass
#![feature(dyn_star)]
//~^ WARN the feature `dyn_star` is incomplete and may not be safe to use and/or cause compiler crashes
fn main() {
let x: dyn* Send = &();
let x = Box::new(x) as Box<dyn Send>;
}