2022-09-22 14:36:26 -05:00
|
|
|
error[E0277]: the trait bound `&dyn MyTrait: MyTrait` is not satisfied
|
2023-03-07 10:31:28 -06:00
|
|
|
--> $DIR/issue-102140.rs:26:22
|
2022-09-22 14:36:26 -05:00
|
|
|
|
|
|
|
|
LL | MyTrait::foo(&self)
|
2023-01-01 20:43:47 -06:00
|
|
|
| ------------ ^^^^^ the trait `MyTrait` is not implemented for `&dyn MyTrait`
|
|
|
|
| |
|
2022-09-22 14:36:26 -05:00
|
|
|
| required by a bound introduced by this call
|
2023-01-01 20:43:47 -06:00
|
|
|
|
|
2023-06-30 14:09:42 -05:00
|
|
|
= help: the trait `MyTrait` is implemented for `Outer`
|
2022-09-22 14:36:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the trait bound `&dyn MyTrait: MyTrait` is not satisfied
|
2023-03-07 10:31:28 -06:00
|
|
|
--> $DIR/issue-102140.rs:26:9
|
2022-09-22 14:36:26 -05:00
|
|
|
|
|
|
|
|
LL | MyTrait::foo(&self)
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ the trait `MyTrait` is not implemented for `&dyn MyTrait`
|
|
|
|
|
|
|
|
|
= help: the trait `MyTrait` is implemented for `Outer`
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `&dyn MyTrait: MyTrait` is not satisfied
|
2023-03-07 10:31:28 -06:00
|
|
|
--> $DIR/issue-102140.rs:26:9
|
2022-09-22 14:36:26 -05:00
|
|
|
|
|
|
|
|
LL | MyTrait::foo(&self)
|
|
|
|
| ^^^^^^^^^^^^ the trait `MyTrait` is not implemented for `&dyn MyTrait`
|
|
|
|
|
|
|
|
|
= help: the trait `MyTrait` is implemented for `Outer`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|