blob: 62aa22d41ed8efaf357688b39af5e7fb6d7f6cda [file] [log] [blame]
// check-pass
#![feature(marker_trait_attr)]
#[marker]
trait Marker {}
impl Marker for &'static () {}
impl Marker for &'static () {}
fn main() {}