rust/tests/ui/structs/struct-path-alias-bounds.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
612 B
Plaintext
Raw Normal View History

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