2023-01-02 17:55:13 +00:00
|
|
|
error: the `function` method cannot be invoked on `&dyn MutTrait`
|
|
|
|
--> $DIR/mutability-mismatch.rs:26:33
|
2022-12-08 20:42:15 +00:00
|
|
|
|
|
|
|
|
LL | (&MutType as &dyn MutTrait).function();
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2023-01-02 05:28:03 +00:00
|
|
|
= help: you need `&mut dyn MutTrait` instead of `&dyn MutTrait`
|
2022-12-08 20:42:15 +00:00
|
|
|
|
2023-01-02 17:55:13 +00:00
|
|
|
error: the `function` method cannot be invoked on `&mut dyn Trait`
|
|
|
|
--> $DIR/mutability-mismatch.rs:29:35
|
2022-12-08 20:42:15 +00:00
|
|
|
|
|
|
|
|
LL | (&mut Type as &mut dyn Trait).function();
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2023-01-02 05:28:03 +00:00
|
|
|
= help: you need `&dyn Trait` instead of `&mut dyn Trait`
|
2022-12-08 20:42:15 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|