rust/tests/ui/marker_trait_attr/overlapping-impl-1-modulo-regions.rs
2023-01-11 09:32:08 +00:00

10 lines
154 B
Rust

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