rust/tests/ui/suggestions/missing-bound-in-manual-copy-impl.rs
2023-03-08 00:00:18 +00:00

10 lines
165 B
Rust

// run-rustfix
#[derive(Clone)]
struct Wrapper<T>(T);
impl<S> Copy for Wrapper<S> {}
//~^ ERROR the trait `Copy` cannot be implemented for this type
fn main() {}