2022-07-25 20:37:06 -05:00
|
|
|
//@ run-rustfix
|
2024-02-06 20:42:01 -06:00
|
|
|
#![allow(dead_code)]
|
2022-07-25 20:37:06 -05:00
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct Wrapper<T>(T);
|
|
|
|
|
|
|
|
impl<S> Copy for Wrapper<S> {}
|
2023-03-07 17:55:51 -06:00
|
|
|
//~^ ERROR the trait `Copy` cannot be implemented for this type
|
2022-07-25 20:37:06 -05:00
|
|
|
|
|
|
|
fn main() {}
|