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`
```
|
||
|---|---|---|
| .. | ||
| auxiliary | ||
| trait-bound-error-spans | ||
| traits | ||
| dynless-turbofish-e0191-issue-91997.rs | ||
| dynless-turbofish-e0191-issue-91997.stderr | ||
| issue-89280-emitter-overflow-splice-lines.rs | ||
| issue-89280-emitter-overflow-splice-lines.stderr | ||
| issue-99572-impl-trait-on-pointer.rs | ||
| issue-99572-impl-trait-on-pointer.stderr | ||
| 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.with-remap.stderr | ||
| remap-path-prefix-sysroot.without-remap.stderr | ||
| 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 | ||
| wrong-target-spec.stderr | ||