rustc/tests/ui/marker_trait_attr/overlapping-impl-1-modulo-regions.rs
2023-08-02 10:33:26 +02: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() {}