2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the trait bound `NoClone: Clone` is not satisfied
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/struct-path-alias-bounds.rs:9:13
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let s = A { a: NoClone };
|
2020-09-02 07:40:56 +00:00
|
|
|
| ^ the trait `Clone` is not implemented for `NoClone`
|
2021-07-17 18:13:50 +00:00
|
|
|
|
|
2021-10-05 23:04:09 +00:00
|
|
|
note: required by a bound in `S`
|
|
|
|
--> $DIR/struct-path-alias-bounds.rs:3:13
|
2021-07-17 18:13:50 +00:00
|
|
|
|
|
|
|
|
LL | struct S<T: Clone> { a: T }
|
2021-10-05 23:04:09 +00:00
|
|
|
| ^^^^^ required by this bound in `S`
|
2022-03-31 14:58:45 +00:00
|
|
|
help: consider annotating `NoClone` with `#[derive(Clone)]`
|
|
|
|
|
|
2023-03-18 02:18:39 +00:00
|
|
|
LL + #[derive(Clone)]
|
|
|
|
LL | struct NoClone;
|
2022-03-31 14:58:45 +00:00
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|