rust/tests/ui/const-generics/occurs-check
Esteban Küber 1d860902f6 When a trait isn't implemented, but another similar impl is found, point at it:
```
error[E0277]: the trait bound `u32: Trait` is not satisfied
  --> $DIR/trait_objects_fail.rs:26:9
   |
LL |     foo(&10_u32);
   |         ^^^^^^^ the trait `Trait` is not implemented for `u32`
   |
help: the trait `Trait<12>` is not implemented for `u32`
      but trait `Trait<2>` is implemented for it
  --> $DIR/trait_objects_fail.rs:7:1
   |
LL | impl Trait<2> for u32 {}
   | ^^^^^^^^^^^^^^^^^^^^^
   = note: required for the cast from `&u32` to `&dyn Trait`
```

Pointing at the `impl` definition that *could* apply given a different self type is particularly useful when it has a blanket self type, as it might not be obvious and is not trivially greppable:

```
error[E0277]: the trait bound `RawImpl<_>: Raw<_>` is not satisfied
  --> $DIR/issue-62742.rs:4:5
   |
LL |     WrongImpl::foo(0i32);
   |     ^^^^^^^^^ unsatisfied trait bound
   |
help: the trait `Raw<_>` is not implemented for `RawImpl<_>`
      but trait `Raw<[_]>` is implemented for it
  --> $DIR/issue-62742.rs:29:1
   |
LL | impl<T> Raw<[T]> for RawImpl<T> {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
note: required by a bound in `SafeImpl`
  --> $DIR/issue-62742.rs:33:35
   |
LL | pub struct SafeImpl<T: ?Sized, A: Raw<T>>(PhantomData<(A, T)>);
   |                                   ^^^^^^ required by this bound in `SafeImpl`
```
2025-10-31 20:38:31 +00:00
..
bind-param.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
unify-fixpoint.rs add test for #97725 2024-03-22 17:12:43 +01:00
unify-fixpoint.stderr add test for #97725 2024-03-22 17:12:43 +01:00
unify-n-nplusone.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unify-n-nplusone.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
unused-substs-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unused-substs-1.stderr When a trait isn't implemented, but another similar impl is found, point at it: 2025-10-31 20:38:31 +00:00
unused-substs-2.rs remove sub_relations from infcx, recompute in diagnostics 2024-02-22 17:29:25 +01:00
unused-substs-2.stderr remove sub_relations from infcx, recompute in diagnostics 2024-02-22 17:29:25 +01:00
unused-substs-3.rs generalize: track relevant info in cache key 2024-09-10 15:21:57 +02:00
unused-substs-3.stderr generalize: track relevant info in cache key 2024-09-10 15:21:57 +02:00
unused-substs-4.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unused-substs-4.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
unused-substs-5.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unused-substs-5.stderr remove sub_relations from infcx, recompute in diagnostics 2024-02-22 17:29:25 +01:00