mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
21 lines
412 B
Rust
21 lines
412 B
Rust
//@ run-pass
|
|
//@ revisions: current next
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
|
//@[current] compile-flags: -C opt-level=0
|
|
//@[next] compile-flags: -Znext-solver -C opt-level=0
|
|
|
|
#![feature(dyn_star)]
|
|
#![allow(incomplete_features)]
|
|
|
|
use std::fmt::Display;
|
|
|
|
fn make_dyn_star() -> dyn* Display {
|
|
Box::new(42) as dyn* Display
|
|
}
|
|
|
|
fn main() {
|
|
let x = make_dyn_star();
|
|
|
|
println!("{x}");
|
|
}
|