2023-11-18 19:29:39 +00:00
|
|
|
warning: this `Deref` implementation is covered by an implicit supertrait coercion
|
2025-02-06 21:57:50 +01:00
|
|
|
--> $DIR/migrate-lint-different-substs.rs:12:1
|
2023-11-18 19:29:39 +00:00
|
|
|
|
|
|
|
|
|
LL | impl<'a> Deref for dyn Foo + 'a {
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `dyn Foo` implements `Deref<Target = dyn Bar<u32>>` which conflicts with supertrait `Bar<i32>`
|
2025-02-06 21:57:50 +01:00
|
|
|
LL |
|
2023-11-18 19:29:39 +00:00
|
|
|
LL | type Target = dyn Bar<u32> + 'a;
|
2025-07-02 20:15:28 +00:00
|
|
|
| ----------- target type is a supertrait of `dyn Foo`
|
2023-11-18 19:29:39 +00:00
|
|
|
|
|
2025-02-06 21:57:50 +01:00
|
|
|
note: the lint level is defined here
|
|
|
|
|
--> $DIR/migrate-lint-different-substs.rs:2:9
|
|
|
|
|
|
|
|
|
|
|
LL | #![warn(deref_into_dyn_supertrait)]
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-11-18 19:29:39 +00:00
|
|
|
|
|
|
|
|
warning: 1 warning emitted
|
|
|
|
|
|