summaryrefslogtreecommitdiffstats
path: root/tests/ui/illegal-sized-bound/mutability-mismatch.stderr
blob: 2ca571d9b7926d7b4c65341d4d562e982a5ff617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: the `function` method cannot be invoked on `&dyn MutTrait`
  --> $DIR/mutability-mismatch.rs:26:33
   |
LL |     (&MutType as &dyn MutTrait).function();
   |                                 ^^^^^^^^
   |
   = help: you need `&mut dyn MutTrait` instead of `&dyn MutTrait`

error: the `function` method cannot be invoked on `&mut dyn Trait`
  --> $DIR/mutability-mismatch.rs:29:35
   |
LL |     (&mut Type as &mut dyn Trait).function();
   |                                   ^^^^^^^^
   |
   = help: you need `&dyn Trait` instead of `&mut dyn Trait`

error: aborting due to 2 previous errors