use std::fmt::{Debug, Display}; #[marker] trait ExplicitMarker {} //~^ ERROR the `#[marker]` attribute is an experimental feature impl ExplicitMarker for T {} impl ExplicitMarker for T {} fn main() {}