// check-pass #![feature(marker_trait_attr)] #[marker] pub trait F {} impl F for T where T: Copy {} impl F for T where T: 'static {} fn main() {}