2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the trait bound `std::string::String: std::marker::Copy` is not satisfied
|
2019-09-15 23:58:20 -05:00
|
|
|
--> $DIR/error-should-say-copy-not-pod.rs:6:17
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | fn check_bound<T:Copy>(_: T) {}
|
2020-04-06 00:15:06 -05:00
|
|
|
| ---- required by this bound in `check_bound`
|
2019-08-24 16:44:43 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | check_bound("nocopy".to_string());
|
2019-09-15 23:58:20 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ the trait `std::marker::Copy` is not implemented for `std::string::String`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|