Files
rust/tests/ui/traits/trait-upcasting/migrate-lint-different-substs.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
621 B
Plaintext
Raw Normal View History

2023-11-18 19:29:39 +00:00
warning: this `Deref` implementation is covered by an implicit supertrait coercion
--> $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>`
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
|
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