summaryrefslogtreecommitdiff
path: root/tests/ui/traits/object/safety.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/object/safety.stderr')
-rw-r--r--tests/ui/traits/object/safety.stderr3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/ui/traits/object/safety.stderr b/tests/ui/traits/object/safety.stderr
index dc18adeafc7..a51b6975938 100644
--- a/tests/ui/traits/object/safety.stderr
+++ b/tests/ui/traits/object/safety.stderr
@@ -11,8 +11,7 @@ LL | trait Tr {
| -- this trait cannot be made into an object...
LL | fn foo();
| ^^^ ...because associated function `foo` has no `self` parameter
- = note: required for `&St` to implement `CoerceUnsized<&dyn Tr>`
- = note: required by cast to type `&dyn Tr`
+ = note: required for the cast from `&St` to `&dyn Tr`
help: consider turning `foo` into a method by giving it a `&self` argument
|
LL | fn foo(&self);