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

10 lines
171 B
Rust

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