rust/tests/ui/traits/next-solver/assembly
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
..
ambig-projection-self-is-ambig.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
ambiguity-due-to-uniquification-1.next.stderr When more than a single impl and less than 4 could apply, point at them 2025-10-31 20:44:01 +00:00
ambiguity-due-to-uniquification-1.rs uniquify root goals during HIR typeck 2025-07-25 12:40:01 +00:00
ambiguity-due-to-uniquification-2.next.stderr When more than a single impl and less than 4 could apply, point at them 2025-10-31 20:44:01 +00:00
ambiguity-due-to-uniquification-2.rs change HIR typeck unification handling approach 2025-08-22 13:39:38 +02:00
ambiguity-due-to-uniquification-3.next.stderr When more than a single impl and less than 4 could apply, point at them 2025-10-31 20:44:01 +00:00
ambiguity-due-to-uniquification-3.rs handle region dependent goals due to infer vars 2025-07-30 14:01:37 +02:00
assemble-normalizing-self-ty-impl-ambiguity.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
better_any-backcompat.rs fix better_any breakage by making the solver more unsound 2025-05-21 13:54:19 +00:00
candidates-equal-modulo-norm-1.rs add regression tests 2024-02-26 11:01:31 +01:00
candidates-equal-modulo-norm-2.rs add regression tests 2024-02-26 11:01:31 +01:00
param-env-alias-bound-conflict.rs Add some new solver tests 2024-03-08 15:54:04 +00:00
runaway-impl-candidate-selection.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
runaway-impl-candidate-selection.stderr