rust/tests/ui/recursion
Esteban Küber 5b54286640 Remove detail from label/note that is already available in other note
Remove the "which is required by `{root_obligation}`" post-script in
"the trait `X` is not implemented for `Y`" explanation in E0277. This
information is already conveyed in the notes explaining requirements,
making it redundant while making the text (particularly in labels)
harder to read.

```
error[E0277]: the trait bound `NotCopy: Copy` is not satisfied
  --> $DIR/wf-static-type.rs:10:13
   |
LL | static FOO: IsCopy<Option<NotCopy>> = IsCopy { t: None };
   |             ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `NotCopy`
   |
   = note: required for `Option<NotCopy>` to implement `Copy`
note: required by a bound in `IsCopy`
  --> $DIR/wf-static-type.rs:7:17
   |
LL | struct IsCopy<T:Copy> { t: T }
   |                 ^^^^ required by this bound in `IsCopy`
```
vs the prior

```
error[E0277]: the trait bound `NotCopy: Copy` is not satisfied
  --> $DIR/wf-static-type.rs:10:13
   |
LL | static FOO: IsCopy<Option<NotCopy>> = IsCopy { t: None };
   |             ^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `NotCopy`, which is required by `Option<NotCopy>: Copy`
   |
   = note: required for `Option<NotCopy>` to implement `Copy`
note: required by a bound in `IsCopy`
  --> $DIR/wf-static-type.rs:7:17
   |
LL | struct IsCopy<T:Copy> { t: T }
   |                 ^^^^ required by this bound in `IsCopy`
```
2024-10-29 16:26:57 +00:00
..
auxiliary
instantiable.rs
issue-23122-1.rs
issue-23122-1.stderr
issue-23122-2.rs
issue-23122-2.stderr
issue-23302-1.rs
issue-23302-1.stderr
issue-23302-2.rs
issue-23302-2.stderr
issue-23302-3.rs
issue-23302-3.stderr
issue-26548-recursion-via-normalize.rs
issue-26548-recursion-via-normalize.stderr
issue-38591-non-regular-dropck-recursion.polonius.stderr
issue-38591-non-regular-dropck-recursion.rs
issue-38591-non-regular-dropck-recursion.stderr
issue-83150.rs
issue-83150.stderr
issue-86784.rs
issue-95134.rs
recursion.polonius.stderr
recursion.rs
recursion.stderr
recursive-enum.rs
recursive-enum.stderr
recursive-reexports.rs
recursive-reexports.stderr
recursive-requirements.rs
recursive-requirements.stderr
recursive-static-definition.rs
recursive-static-definition.stderr
recursive-types-are-not-uninhabited.rs
recursive-types-are-not-uninhabited.stderr