2024-09-19 00:45:20 +00:00
|
|
|
warning: trait item `hello` from `B` shadows identically named item from supertrait
|
2025-01-25 17:14:33 +00:00
|
|
|
--> $DIR/common-ancestor.rs:17:5
|
|
|
|
|
|
|
|
|
LL | fn hello(&self) {
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
note: item from `A` is shadowed by a subtrait item
|
|
|
|
--> $DIR/common-ancestor.rs:10:5
|
|
|
|
|
|
|
|
|
LL | fn hello(&self) {
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/common-ancestor.rs:6:9
|
|
|
|
|
|
|
|
|
LL | #![warn(supertrait_item_shadowing_definition)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
warning: trait item `hello` from `B` shadows identically named item from supertrait
|
|
|
|
--> $DIR/common-ancestor.rs:25:8
|
2024-09-19 00:45:20 +00:00
|
|
|
|
|
|
|
|
LL | ().hello();
|
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
note: item from `B` shadows a supertrait item
|
2025-01-25 17:14:33 +00:00
|
|
|
--> $DIR/common-ancestor.rs:17:5
|
2024-09-19 00:45:20 +00:00
|
|
|
|
|
|
|
|
LL | fn hello(&self) {
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
note: item from `A` is shadowed by a subtrait item
|
2025-01-25 17:14:33 +00:00
|
|
|
--> $DIR/common-ancestor.rs:10:5
|
2024-09-19 00:45:20 +00:00
|
|
|
|
|
|
|
|
LL | fn hello(&self) {
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/common-ancestor.rs:5:9
|
|
|
|
|
|
|
|
|
LL | #![warn(supertrait_item_shadowing_usage)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2025-01-25 17:14:33 +00:00
|
|
|
warning: 2 warnings emitted
|
2024-09-19 00:45:20 +00:00
|
|
|
|