summaryrefslogtreecommitdiffstats
path: root/tests/ui/illegal-sized-bound/mutability-mismatch.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/illegal-sized-bound/mutability-mismatch.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/illegal-sized-bound/mutability-mismatch.stderr b/tests/ui/illegal-sized-bound/mutability-mismatch.stderr
new file mode 100644
index 000000000..2ca571d9b
--- /dev/null
+++ b/tests/ui/illegal-sized-bound/mutability-mismatch.stderr
@@ -0,0 +1,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
+