mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
07bd4590fb
Account for unmet T: !Copy in E0277 message ``` error[E0277]: the trait bound `T: !Copy` is not satisfied --> $DIR/simple.rs:10:16 | LL | not_copy::<T>(); | ^ the trait bound `T: !Copy` is not satisfied ``` instead of the current ``` error[E0277]: the trait bound `T: !Copy` is not satisfied --> $DIR/simple.rs:10:16 | LL | not_copy::<T>(); | ^ the trait `!Copy` is not implemented for `T` ``` |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
messages.ftl |