rust/tests/ui/kindck
Esteban Küber eeadffd926 When more than a single impl and less than 4 could apply, point at them
```
error[E0277]: the trait bound `[[u16; 3]; 2]: Bar` is not satisfied
  --> $DIR/issue-67185-2.rs:21:6
   |
LL | impl Foo for FooImpl {}
   |      ^^^ the trait `Bar` is not implemented for `[[u16; 3]; 2]`
   |
help: the following other types implement trait `Bar`
  --> $DIR/issue-67185-2.rs:9:1
   |
LL | impl Bar for [u16; 4] {}
   | ^^^^^^^^^^^^^^^^^^^^^ `[u16; 4]`
LL | impl Bar for [[u16; 3]; 3] {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^ `[[u16; 3]; 3]`
note: required by a bound in `Foo`
  --> $DIR/issue-67185-2.rs:14:30
   |
LL | trait Foo
   |       --- required by a bound in this trait
LL | where
LL |     [<u8 as Baz>::Quaks; 2]: Bar,
   |                              ^^^ required by this bound in `Foo`
```
2025-10-31 20:44:01 +00:00
..
kindck-copy.rs Extend the renaming to coerce_unsafe_ptr 2025-02-10 13:01:55 +00:00
kindck-copy.stderr On E0277, point at type that doesn't implement bound 2025-08-22 17:55:15 +00:00
kindck-impl-type-params-2.rs Use root obligation on E0277 for some cases 2024-03-03 18:53:35 +00:00
kindck-impl-type-params-2.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
kindck-impl-type-params.rs Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
kindck-impl-type-params.stderr When more than a single impl and less than 4 could apply, point at them 2025-10-31 20:44:01 +00:00
kindck-inherited-copy-bound.curr.stderr Compiler: Finalize dyn compatibility renaming 2025-01-26 21:20:31 +01:00
kindck-inherited-copy-bound.rs Deduplicate dyn compatibility violations due to coercion 2025-05-26 10:57:54 +00:00
kindck-inherited-copy-bound.stderr Use more detailed spans in dyn compat errors within bodies 2025-05-27 08:18:11 +00:00
kindck-nonsendable-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
kindck-nonsendable-1.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
kindck-send-object.rs Use root obligation on E0277 for some cases 2024-03-03 18:53:35 +00:00
kindck-send-object.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
kindck-send-object1.rs Use root obligation on E0277 for some cases 2024-03-03 18:53:35 +00:00
kindck-send-object1.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
kindck-send-object2.rs Use root obligation on E0277 for some cases 2024-03-03 18:53:35 +00:00
kindck-send-object2.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
kindck-send-owned.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
kindck-send-owned.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
kindck-send-unsafe.rs tidy check to find misc files in ui tests, and clean up the results 2023-05-09 20:35:39 -04:00
kindck-send-unsafe.stderr Revert "Suggest using Arc on !Send/!Sync types" 2023-08-28 03:16:48 -07:00