mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-15 16:33:49 +00:00
![]() 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` ``` |
||
---|---|---|
.. | ||
associated-constraints.rs | ||
associated-constraints.stderr | ||
opaque-type-unsatisfied-bound.rs | ||
opaque-type-unsatisfied-bound.stderr | ||
opaque-type-unsatisfied-fn-bound.rs | ||
opaque-type-unsatisfied-fn-bound.stderr | ||
simple.rs | ||
simple.stderr | ||
supertrait.rs |