rust/tests/ui/str
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
..
nul-char-equivalence.rs cleaned up some tests 2025-07-05 01:25:48 +05:00
str-array-assignment.rs
str-array-assignment.stderr Unimplement unsized_locals 2025-06-13 01:16:36 +02:00
str-as-char.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
str-as-char.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
str-as-char.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
str-concat-on-double-ref.rs
str-concat-on-double-ref.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
str-escape.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
str-escape.stderr Be more accurate about calculating display_col from a BytePos 2024-07-18 20:08:38 +00:00
str-idx.rs
str-idx.stderr When more than a single impl and less than 4 could apply, point at them 2025-10-31 20:44:01 +00:00
str-lit-type-mismatch.rs
str-lit-type-mismatch.stderr Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
str-mut-idx.rs
str-mut-idx.stderr When more than a single impl and less than 4 could apply, point at them 2025-10-31 20:44:01 +00:00
str-overrun.rs tests: use needs-subprocess instead of ignore-{wasm32,emscripten,sgx} 2025-01-23 20:51:29 +08:00
str-static-literal.rs cleaned up some tests 2025-05-31 19:49:19 +05:00