rust/src/test/ui/error-should-say-copy-not-pod.stderr

13 lines
519 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `std::string::String: std::marker::Copy` is not satisfied
--> $DIR/error-should-say-copy-not-pod.rs:6:17
2018-08-08 07:28:26 -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-03-09 06:03:44 -06:00
LL | check_bound("nocopy".to_string());
| ^^^^^^^^^^^^^^^^^^^^ 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`.