2020-09-02 02:40:56 -05:00
|
|
|
error[E0277]: the trait bound `String: 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-03-09 06:03:44 -06:00
|
|
|
LL | check_bound("nocopy".to_string());
|
2021-09-07 06:30:53 -05:00
|
|
|
| ----------- ^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
|
|
|
|
| |
|
|
|
|
| required by a bound introduced by this call
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
|
|
|
note: required by a bound in `check_bound`
|
|
|
|
--> $DIR/error-should-say-copy-not-pod.rs:3:18
|
|
|
|
|
|
|
|
|
LL | fn check_bound<T:Copy>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `check_bound`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|