2020-09-02 02:40:56 -05:00
|
|
|
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
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | struct S<T: Clone> { a: T }
|
|
|
|
| ------------------ required by `S`
|
|
|
|
...
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | let s = A { a: NoClone };
|
2020-09-02 02:40:56 -05:00
|
|
|
| ^ the trait `Clone` is not implemented for `NoClone`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|