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