1
Fork 0
rust/src/test/ui/structs/struct-path-alias-bounds.stderr

16 lines
458 B
Text
Raw Normal View History

error[E0277]: the trait bound `NoClone: Clone` is not satisfied
2018-12-25 08:56:47 -07:00
--> $DIR/struct-path-alias-bounds.rs:9:13
2018-08-08 14:28:26 +02:00
|
LL | let s = A { a: NoClone };
| ^ the trait `Clone` is not implemented for `NoClone`
|
note: required by `S`
--> $DIR/struct-path-alias-bounds.rs:3:1
|
LL | struct S<T: Clone> { a: T }
| ^^^^^^^^^^^^^^^^^^
2018-08-08 14:28:26 +02:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.