mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
15 lines
288 B
Rust
15 lines
288 B
Rust
//@ known-bug: #116979
|
|
//@ compile-flags: -Csymbol-mangling-version=v0
|
|
//@ needs-rustc-debug-assertions
|
|
|
|
#![feature(dyn_star)]
|
|
#![allow(incomplete_features)]
|
|
|
|
use std::fmt::Display;
|
|
|
|
pub fn require_dyn_star_display(_: dyn* Display) {}
|
|
|
|
fn main() {
|
|
require_dyn_star_display(1usize);
|
|
}
|