rust/tests/ui/wf
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
..
closure-wf.rs Add test 2024-04-25 10:51:54 -04:00
closure-wf.stderr Add test 2024-04-25 10:51:54 -04:00
conflicting-impls.rs Silence some follow-up errors on trait impls in case the trait has conflicting or otherwise incoherent impls 2024-04-09 10:23:58 +00:00
conflicting-impls.stderr Silence some follow-up errors on trait impls in case the trait has conflicting or otherwise incoherent impls 2024-04-09 10:23:58 +00:00
hir-wf-canonicalized.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
hir-wf-canonicalized.stderr improve pretty printing for trait objects 2024-02-07 16:09:46 +01:00
hir-wf-check-erase-regions.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
hir-wf-check-erase-regions.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
ice-hir-wf-check-anon-const-issue-122199.rs fix(hir_analysis/wfcheck): don't leak {type error} 2024-09-29 23:40:43 -05:00
ice-hir-wf-check-anon-const-issue-122199.stderr fix(hir_analysis/wfcheck): don't leak {type error} 2024-09-29 23:40:43 -05:00
ice-hir-wf-check-anon-const-issue-122989.rs Bless tests and handle tests/crashes 2024-06-05 22:25:42 +01:00
ice-hir-wf-check-anon-const-issue-122989.stderr fix(hir_analysis/wfcheck): don't leak {type error} 2024-09-29 23:40:43 -05:00
ice-wf-missing-span-in-error-130012.rs Fix ICE caused by missing span in a region error 2024-09-09 12:27:36 +05:30
ice-wf-missing-span-in-error-130012.stderr Fix ICE caused by missing span in a region error 2024-09-09 12:27:36 +05:30
issue-48638.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-87495.rs
issue-87495.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-95665.rs
issue-95665.stderr
issue-96810.rs
issue-96810.stderr
issue-103573.rs
issue-103573.stderr
issue-110157.rs return ty::Error when equating ty::Error 2024-02-19 23:54:49 +00:00
issue-110157.stderr return ty::Error when equating ty::Error 2024-02-19 23:54:49 +00:00
unnormalized-projection-guides-inference.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
wf-array-elem-sized.rs
wf-array-elem-sized.stderr
wf-associated-const.rs wf-check type annotations before normalization 2024-01-16 09:25:28 +01:00
wf-associated-const.stderr wf-check type annotations before normalization 2024-01-16 09:25:28 +01:00
wf-complex-assoc-type.rs
wf-complex-assoc-type.stderr
wf-const-type.rs Check that return type is WF in typeck 2024-03-06 16:51:17 +05:30
wf-const-type.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
wf-convert-dyn-incompat-trait-obj-box.rs UI tests: Rename "object safe" to "dyn compatible" 2024-10-10 01:13:29 +02:00
wf-convert-dyn-incompat-trait-obj-box.stderr UI tests: Rename "object safe" to "dyn compatible" 2024-10-10 01:13:29 +02:00
wf-convert-dyn-incompat-trait-obj.rs UI tests: Rename "object safe" to "dyn compatible" 2024-10-10 01:13:29 +02:00
wf-convert-dyn-incompat-trait-obj.stderr UI tests: Rename "object safe" to "dyn compatible" 2024-10-10 01:13:29 +02:00
wf-dyn-incompat-trait-obj-match.rs Stop using the whole match expr span for an arm's obligation span 2024-10-27 22:48:03 +00:00
wf-dyn-incompat-trait-obj-match.stderr Stop using the whole match expr span for an arm's obligation span 2024-10-27 22:48:03 +00:00
wf-dyn-incompatible.rs UI tests: Rename "object safe" to "dyn compatible" 2024-10-10 01:13:29 +02:00
wf-dyn-incompatible.stderr UI tests: Rename "object safe" to "dyn compatible" 2024-10-10 01:13:29 +02:00
wf-enum-bound.rs
wf-enum-bound.stderr
wf-enum-fields-struct-variant.rs
wf-enum-fields-struct-variant.stderr
wf-enum-fields.rs
wf-enum-fields.stderr
wf-fn-def-check-sig-1.rs rebase 2024-04-04 02:14:57 +01:00
wf-fn-def-check-sig-1.stderr rebase 2024-04-04 02:14:57 +01:00
wf-fn-def-check-sig-2.rs check FnDef return type for WF 2024-04-04 01:55:29 +01:00
wf-fn-def-check-sig-2.stderr rebase 2024-04-04 02:14:57 +01:00
wf-fn-where-clause.rs
wf-fn-where-clause.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
wf-foreign-fn-decl-ret.rs
wf-foreign-fn-decl-ret.stderr
wf-impl-associated-type-region.rs
wf-impl-associated-type-region.stderr
wf-impl-associated-type-trait.rs
wf-impl-associated-type-trait.stderr
wf-impl-self-type.rs
wf-impl-self-type.stderr On E0277 be clearer about implicit Sized bounds on type params and assoc types 2024-02-01 03:30:26 +00:00
wf-in-fn-arg.rs
wf-in-fn-arg.stderr
wf-in-fn-ret.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
wf-in-fn-ret.stderr Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
wf-in-fn-type-arg.rs
wf-in-fn-type-arg.stderr
wf-in-fn-type-ret.rs
wf-in-fn-type-ret.stderr
wf-in-fn-type-static.rs
wf-in-fn-type-static.stderr
wf-in-fn-where-clause.rs
wf-in-fn-where-clause.stderr
wf-in-foreign-fn-decls-issue-80468.rs make type_flags(ReError) & HAS_ERROR 2024-03-20 17:29:58 +00:00
wf-in-foreign-fn-decls-issue-80468.stderr make type_flags(ReError) & HAS_ERROR 2024-03-20 17:29:58 +00:00
wf-in-obj-type-static.rs
wf-in-obj-type-static.stderr
wf-in-obj-type-trait.rs
wf-in-obj-type-trait.stderr
wf-in-where-clause-static.current.stderr Enforce supertrait outlives obligations hold when confirming impl 2024-08-05 09:55:14 -04:00
wf-in-where-clause-static.next.stderr Enforce supertrait outlives obligations hold when confirming impl 2024-08-05 09:55:14 -04:00
wf-in-where-clause-static.rs Enforce supertrait outlives obligations hold when confirming impl 2024-08-05 09:55:14 -04:00
wf-inherent-impl-method-where-clause.rs
wf-inherent-impl-method-where-clause.stderr
wf-inherent-impl-where-clause.rs
wf-inherent-impl-where-clause.stderr
wf-misc-methods-issue-28609.rs
wf-misc-methods-issue-28609.stderr
wf-normalization-sized.next.stderr Report better WF obligation leaf obligations in new solver 2024-05-16 21:08:42 -04:00
wf-normalization-sized.rs Report better WF obligation leaf obligations in new solver 2024-05-16 21:08:42 -04:00
wf-outlives-ty-in-fn-or-trait.rs
wf-outlives-ty-in-fn-or-trait.stderr
wf-packed-on-proj-of-type-as-unimpl-trait.rs
wf-packed-on-proj-of-type-as-unimpl-trait.stderr
wf-static-method.rs
wf-static-method.stderr
wf-static-type.rs Check that return type is WF in typeck 2024-03-06 16:51:17 +05:30
wf-static-type.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
wf-struct-bound.rs
wf-struct-bound.stderr
wf-struct-field.rs
wf-struct-field.stderr
wf-trait-associated-type-bound.rs
wf-trait-associated-type-bound.stderr
wf-trait-associated-type-region.rs
wf-trait-associated-type-region.stderr
wf-trait-associated-type-trait.rs
wf-trait-associated-type-trait.stderr
wf-trait-bound.rs
wf-trait-bound.stderr
wf-trait-default-fn-arg.rs
wf-trait-default-fn-arg.stderr
wf-trait-default-fn-ret.rs
wf-trait-default-fn-ret.stderr
wf-trait-default-fn-where-clause.rs
wf-trait-default-fn-where-clause.stderr
wf-trait-fn-arg.rs
wf-trait-fn-arg.stderr
wf-trait-fn-ret.rs
wf-trait-fn-ret.stderr
wf-trait-fn-where-clause.rs
wf-trait-fn-where-clause.stderr
wf-trait-superbound.rs
wf-trait-superbound.stderr