mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 11:42:15 +00:00
10 lines
161 B
Rust
10 lines
161 B
Rust
#![feature(dyn_star)]
|
|
|
|
use std::fmt::Display;
|
|
|
|
pub fn require_dyn_star_display(_: dyn* Display) {}
|
|
|
|
fn works_locally() {
|
|
require_dyn_star_display(1usize);
|
|
}
|