rust/tests/ui/errors
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
trait-bound-error-spans Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
traits Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
dynless-turbofish-e0191-issue-91997.rs E0191 suggestion correction, inserts turbofish without dyn (#91997) 2024-07-09 17:21:31 -06:00
dynless-turbofish-e0191-issue-91997.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-89280-emitter-overflow-splice-lines.rs
issue-89280-emitter-overflow-splice-lines.stderr
issue-99572-impl-trait-on-pointer.rs Add more information link to orphan impls 2024-08-11 10:50:07 +00:00
issue-99572-impl-trait-on-pointer.stderr Make new information notes instead of labels 2024-09-26 17:17:11 +00:00
issue-104621-extern-bad-file.rs
issue-104621-extern-bad-file.stderr
issue-104621-extern-not-file.rs
issue-104621-extern-not-file.stderr
pic-linker.rs
remap-path-prefix-macro.normal.run.stdout
remap-path-prefix-macro.rs
remap-path-prefix-macro.with-macro-scope.run.stdout
remap-path-prefix-macro.without-macro-scope.run.stdout
remap-path-prefix-reverse.local-self.stderr
remap-path-prefix-reverse.remapped-self.stderr
remap-path-prefix-reverse.rs
remap-path-prefix-sysroot.rs remap-path-prefix-sysroot: remap {{src-base}} as well 2024-09-28 21:50:23 +02:00
remap-path-prefix-sysroot.with-remap.stderr remap-path-prefix-sysroot: remap {{src-base}} as well 2024-09-28 21:50:23 +02:00
remap-path-prefix-sysroot.without-remap.stderr Implement RFC3137 trim-paths sysroot changes 2024-09-27 13:27:54 +02:00
remap-path-prefix.normal.stderr
remap-path-prefix.rs
remap-path-prefix.with-diagnostic-scope.stderr
remap-path-prefix.without-diagnostic-scope.stderr
wrong-target-spec.rs rewrite and rename issue-107094 to rmake 2024-07-22 10:12:00 -04:00
wrong-target-spec.stderr rewrite and rename issue-33329 to ui test 2024-07-22 10:11:59 -04:00