rust/tests/ui/traits/negative-bounds
Matthias Krüger 07bd4590fb
Rollup merge of #121875 - estebank:e0277-drive-by, r=compiler-errors
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`
```
2024-03-02 10:09:38 +01:00
..
associated-constraints.rs Deny parenthetical notation for negative bounds 2023-12-28 00:50:16 +01:00
associated-constraints.stderr Deny parenthetical notation for negative bounds 2023-12-28 00:50:16 +01:00
opaque-type-unsatisfied-bound.rs Get rid of some sub_exp and eq_exp 2024-03-01 01:20:49 +00:00
opaque-type-unsatisfied-bound.stderr Get rid of some sub_exp and eq_exp 2024-03-01 01:20:49 +00:00
opaque-type-unsatisfied-fn-bound.rs Get rid of some sub_exp and eq_exp 2024-03-01 01:20:49 +00:00
opaque-type-unsatisfied-fn-bound.stderr Get rid of some sub_exp and eq_exp 2024-03-01 01:20:49 +00:00
simple.rs Make feature negative_bounds internal 2023-12-28 00:43:35 +01:00
simple.stderr Account for unmet T: !Copy in E0277 message 2024-03-02 01:53:37 +00:00
supertrait.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00